ReceiptMessage.java
1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.erry.iclear.dateInterface.api.request;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import javax.persistence.*;
import java.io.Serializable;
@ApiModel(value = "receiptMessage", description = "海关回执")
@Entity
@Table(name = "T_RECEIPT_MESSAGE")
@Data
public class ReceiptMessage implements Serializable {
private static final long serialVersionUID = 4293869083362084652L;
/**
* ID,自动增加
*/
@Id
@GeneratedValue
@Column(name = "ID")
private Long id;
@ApiModelProperty(value = "客户端编号", name = "clientSeqNo", example = "773515164336")
@Column(name = "CLIENTSEQ_NO")
String clientSeqNo;
@ApiModelProperty(value = "数据中心统一编号", name = "seqNo", example = "E20210000617922161")
@Column(name = "SEQ_NO")
String seqNo;
@ApiModelProperty(value = "报关单编号", name = "entryId", example = "010120210000226020")
@Column(name = "ENTRY_ID")
String entryId;
@ApiModelProperty(value = "回执时间", name = "noticeDate", example = "20210423T231152")
@Column(name = "NOTICE_DATE")
String noticeDate;
@ApiModelProperty(value = "回执代码", name = "channel", example = "R")
@Column(name = "CHANNEL")
String channel;
@ApiModelProperty(value = "回执说明", name = "note", example = "该单已结关")
@Column(name = "NOTE")
String note;
@ApiModelProperty(value = "总单号_运单号", name = "billNo", example = "02355851832_773515164336")
@Column(name = "BILL_NO")
String billNo;
}