| | |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import com.core.common.Cools; |
| | | import com.core.common.SpringUtils; |
| | | import com.zy.common.utils.Synchro; |
| | | import com.zy.system.entity.User; |
| | | import com.zy.system.service.UserService; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @ApiModelProperty(value= "单据编号") |
| | | @TableField("order_no") |
| | | private String orderNo; |
| | | |
| | | /** |
| | | * 集装箱号 |
| | | */ |
| | | @ApiModelProperty(value= "集装箱号") |
| | | @TableField("container_no") |
| | | private String containerNo; |
| | | |
| | | /** |
| | | * teu |
| | | */ |
| | | @ApiModelProperty(value= "teu") |
| | | @TableField("teu") |
| | | private Integer teu; |
| | | |
| | | /** |
| | | * 车牌号 |
| | | */ |
| | | @ApiModelProperty(value= "车牌号") |
| | | @TableField("plate_no") |
| | | private String plateNo; |
| | | |
| | | /** |
| | | * 车次号 |
| | | */ |
| | | @ApiModelProperty(value= "车次号") |
| | | @TableField("train_no") |
| | | private String trainNo; |
| | | |
| | | /** |
| | | * 货物频次 |
| | | */ |
| | | @ApiModelProperty(value= "货物频次:1=高频,2=低频") |
| | | @TableField("freq_type") |
| | | private Integer freqType; |
| | | |
| | | /** |
| | | * 立方数 |
| | | */ |
| | | @ApiModelProperty(value= "立方数,单位:立方米") |
| | | @TableField("cube_number") |
| | | private Double cubeNumber; |
| | | |
| | | /** |
| | | * 规格 |
| | |
| | | * 备用1 |
| | | */ |
| | | @ApiModelProperty(value= "备用1") |
| | | private String standby1; |
| | | private String standby1 = "1"; |
| | | |
| | | /** |
| | | * 备用2 |
| | | */ |
| | | @ApiModelProperty(value= "备用2") |
| | | private String standby2; |
| | | private String standby2 = "1"; |
| | | |
| | | /** |
| | | * 备用3 |
| | | */ |
| | | @ApiModelProperty(value= "备用3") |
| | | private String standby3; |
| | | private String standby3 = "1"; |
| | | |
| | | /** |
| | | * 备用1 |
| | | */ |
| | | @ApiModelProperty(value= "备用1") |
| | | @TableField("box_type1") |
| | | private String boxType1 = "1"; |
| | | |
| | | /** |
| | | * 备用2 |
| | | */ |
| | | @ApiModelProperty(value= "备用2") |
| | | @TableField("box_type2") |
| | | private String boxType2 = "1"; |
| | | |
| | | /** |
| | | * 备用3 |
| | | */ |
| | | @ApiModelProperty(value= "备用3") |
| | | @TableField("box_type3") |
| | | private String boxType3 = "1"; |
| | | |
| | | public String getIoTime$(){ |
| | | if (Cools.isEmpty(this.ioTime)){ |
| | |
| | | return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.appeTime); |
| | | } |
| | | |
| | | |
| | | public void sync(Object source) { |
| | | Synchro.Copy(source, this); |
| | | } |
| | | } |