| | |
| | | import com.core.common.Cools; |
| | | import com.core.common.SpringUtils; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.Date; |
| | | |
| | | @TableName("asr_bas_crnp") |
| | | @Data |
| | | public class BasCrnp implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | |
| | | /** |
| | | * 状态 |
| | | * 1.联机 |
| | | * 2.手动 |
| | | * 3.充电中 |
| | | */ |
| | | @ApiModelProperty(value= "状态") |
| | | @TableField("crn_sts") |
| | |
| | | @TableField("emp_in") |
| | | private String empIn; |
| | | |
| | | @ApiModelProperty(value= "") |
| | | /** |
| | | * 找小车标记,优先找有1的小车所在层,再去找没有小车的所在层 |
| | | */ |
| | | @ApiModelProperty(value= "入库标记") |
| | | @TableField("tank_qty") |
| | | private Integer tankQty; |
| | | |
| | | @ApiModelProperty(value= "小车所在层") |
| | | @TableField("lev1") |
| | | private Integer lev1; |
| | | |
| | | @ApiModelProperty(value= "") |
| | | @TableField("tank_qty1") |
| | | private Integer tankQty1; |
| | | |
| | | |
| | | |
| | | public BasCrnp() {} |
| | | |
| | | public BasCrnp(String inEnable,String outEnable,Integer crnSts,Integer wrkNo,Long crnErr,String frmLocno,Integer frmSta,Integer toSta,String toLocno,Long appeUser,Date appeTime,Long modiUser,Date modiTime,String hpMk,String retrieveMk,String ctlHp,String ctlRest,String empIn,Integer tankQty,Integer tankQty1) { |