| | |
| | | import com.zy.asrs.wms.asrs.service.OrderService;
|
| | | import com.zy.asrs.wms.system.entity.Host;
|
| | | import com.zy.asrs.wms.system.entity.User;
|
| | | import lombok.experimental.Accessors;
|
| | | import org.springframework.format.annotation.DateTimeFormat;
|
| | | import java.text.SimpleDateFormat;
|
| | | import java.util.Date;
|
| | |
| | |
|
| | | @Data
|
| | | @TableName("man_cache_site")
|
| | | @Accessors(chain = true)
|
| | | public class CacheSite implements Serializable {
|
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | |
| | | */
|
| | | @ApiModelProperty(value= "站点编号")
|
| | | private String siteNo;
|
| | |
|
| | | @ApiModelProperty("Tag编码")
|
| | | @TableField("`index`")
|
| | | private String index;
|
| | |
|
| | | /**
|
| | | * 站点状态 0: 空站 1: 满站 2: 预约
|
| | |
| | | @TableField(updateStrategy = FieldStrategy.IGNORED)
|
| | | private String platformNo;
|
| | |
|
| | | /**
|
| | | * 播种墙库位容器码
|
| | | */
|
| | | @ApiModelProperty(value = "播种墙库位容器码")
|
| | | @TableField(updateStrategy = FieldStrategy.IGNORED)
|
| | | private String barcode;
|
| | |
|
| | | public CacheSite() {}
|
| | |
|
| | | public CacheSite(String siteNo,Integer siteStatus,Long orderId,String orderNo,Long hostId,Integer status,Integer deleted,Date createTime,Long createBy,Date updateTime,Long updateBy,String memo) {
|
| | | public CacheSite(String siteNo,Integer siteStatus,Long orderId,String orderNo,Long hostId,Integer status, String barcode,Integer deleted,Date createTime,Long createBy,Date updateTime,Long updateBy,String memo) {
|
| | | this.siteNo = siteNo;
|
| | | this.siteStatus = siteStatus;
|
| | | this.orderId = orderId;
|
| | | this.orderNo = orderNo;
|
| | | this.barcode = barcode;
|
| | | this.hostId = hostId;
|
| | | this.status = status;
|
| | | this.deleted = deleted;
|