DomesticDestinationMapping.java
759 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
42
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_DOMESTIC_DESTINATION_MAPPING")
@Data
public class DomesticDestinationMapping implements Serializable {
private static final long serialVersionUID = 1183214016253488527L;
/**
* 运单表ID,自动增加
*/
@Id
@GeneratedValue
@Column(name = "ID")
private Long id;
/**
*国内地区代码
*/
@Column(name = "DISTRICTCODE")
private String districtCode;
/**
*国内地区名称
*/
@Column(name = "DISTRICTNAME")
private String districtName;
}