| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * ID |
| | | */ |
| | | @ApiModelProperty(value= "ID") |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | /** |
| | | * 设备ID |
| | | */ |
| | | @ApiModelProperty(value= "设备ID") |
| | | private Integer deviceId; |
| | | |
| | | /** |
| | | * 四向穿梭车号 |
| | | */ |
| | | @ApiModelProperty(value= "四向穿梭车号") |
| | | @TableId(value = "shuttle_no", type = IdType.INPUT) |
| | | private Integer shuttleNo; |
| | | |
| | | /** |
| | | * 状态 1: 正常 0: 禁用 |
| | | * 状态 1: 正常 0: 禁用 |
| | | */ |
| | | @ApiModelProperty(value= "状态 1: 正常 0: 禁用 ") |
| | | private Integer status; |
| | |
| | | */ |
| | | @ApiModelProperty(value= "任务号") |
| | | private Integer taskNo; |
| | | |
| | | /** |
| | | * 暂存库位 |
| | | */ |
| | | @ApiModelProperty(value= "暂存库位") |
| | | private String idleLoc; |
| | | |
| | | /** |
| | | * 自动充电 |
| | |
| | | private Integer runSpeed; |
| | | |
| | | /** |
| | | * 是否删除 1: 是 0: 否 |
| | | * 是否删除 1: 是 0: 否 |
| | | */ |
| | | @ApiModelProperty(value= "是否删除 1: 是 0: 否 ") |
| | | @TableLogic |
| | |
| | | @ApiModelProperty(value= "设备状态") |
| | | private String protocol; |
| | | |
| | | /** |
| | | * 小车禁用楼层 |
| | | */ |
| | | @ApiModelProperty(value= "小车禁用楼层") |
| | | private String disableLev; |
| | | |
| | | public BasShuttle() {} |
| | | |
| | | public BasShuttle(Integer shuttleNo, Integer status, Integer shuttleStatus, Integer taskNo, String idleLoc, Integer autoCharge, Integer chargeLine, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo, Integer runSpeed, Integer deleted, Long hostId, String protocol) { |
| | | this.shuttleNo = shuttleNo; |
| | | this.status = status; |
| | | this.shuttleStatus = shuttleStatus; |
| | | this.taskNo = taskNo; |
| | | this.idleLoc = idleLoc; |
| | | this.autoCharge = autoCharge; |
| | | this.chargeLine = chargeLine; |
| | | this.createBy = createBy; |
| | | this.createTime = createTime; |
| | | this.updateBy = updateBy; |
| | | this.updateTime = updateTime; |
| | | this.memo = memo; |
| | | this.runSpeed = runSpeed; |
| | | this.deleted = deleted; |
| | | this.hostId = hostId; |
| | | this.protocol = protocol; |
| | | } |
| | | |
| | | // BasShuttle basShuttle = new BasShuttle( |
| | | |
| | | // BasShuttle basShuttle = new BasShuttle( |
| | | // null, // 状态 |
| | | // null, // 当前小车状态 |
| | | // null, // 任务号 |