|
|
|
@ -11,19 +11,13 @@ import javax.persistence.Version;
|
|
|
|
|
@Entity
|
|
|
|
|
@Table(name = "cd_express")
|
|
|
|
|
public class CdExpress extends BaseMybatisModel {
|
|
|
|
|
/**
|
|
|
|
|
* 主键
|
|
|
|
|
*/
|
|
|
|
|
// 主键
|
|
|
|
|
private Integer id;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 快递编号
|
|
|
|
|
*/
|
|
|
|
|
// 快递编码
|
|
|
|
|
private String expressCode;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 快递公司名
|
|
|
|
|
*/
|
|
|
|
|
// 快递名称
|
|
|
|
|
private String expressName;
|
|
|
|
|
|
|
|
|
|
@Column(name = "ID")
|
|
|
|
|