OrigplacecodeMapping.java
726 Bytes
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
package com.erry.iclear.dateInterface.entity;
import lombok.Data;
import javax.persistence.*;
import java.io.Serializable;
/**
* 目的地
* Created by Erry 2019/6/15.
*
* @author Administrator
*/
@Entity
@Table(name = "T_ORIGPLACECODE_MAPPING")
@Data
public class OrigplacecodeMapping implements Serializable {
private static final long serialVersionUID = -1205560923546470604L;
/**
* 运单表ID,自动增加
*/
@Id
@Column(name = "ID")
private Long id;
/**
* 国内口岸代码
*/
@Column(name = "ORIGPLACECODE")
private String origplaceCode;
/**
* 国内口岸名称
*/
@Column(name = "ORIGPLACENAME")
private String origplaceName;
}