zhang
2025-05-20 1313906bb1eb983d3beece810035e7fc28d6a92f
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Sta.java
@@ -71,6 +71,12 @@
    private Double offset;
    /**
     * 作业角度
     */
    @ApiModelProperty(value= "作业角度")
    private String angle;
    /**
     * 自动
     */
    @ApiModelProperty(value= "自动")
@@ -122,13 +128,13 @@
     * 租户
     */
    @ApiModelProperty(value= "租户")
    private Integer tenantId;
    private Long tenantId;
    /**
     * 添加人员
     */
    @ApiModelProperty(value= "添加人员")
    private Integer createBy;
    private Long createBy;
    /**
     * 添加时间
@@ -140,7 +146,7 @@
     * 修改人员
     */
    @ApiModelProperty(value= "修改人员")
    private Integer updateBy;
    private Long updateBy;
    /**
     * 修改时间
@@ -153,56 +159,6 @@
     */
    @ApiModelProperty(value= "备注")
    private String memo;
    public Sta() {}
    public Sta(String uuid,Long zoneId,String staNo,String name,Long staType,Long code,Double offset,String autoing,String loading,String inEnable,String outEnable,String zpallet,Long staSts,Integer status,Integer deleted,Integer tenantId,Integer createBy,Date createTime,Integer updateBy,Date updateTime,String memo) {
        this.uuid = uuid;
        this.zoneId = zoneId;
        this.staNo = staNo;
        this.name = name;
        this.staType = staType;
        this.code = code;
        this.offset = offset;
        this.autoing = autoing;
        this.loading = loading;
        this.inEnable = inEnable;
        this.outEnable = outEnable;
        this.zpallet = zpallet;
        this.staSts = staSts;
        this.status = status;
        this.deleted = deleted;
        this.tenantId = tenantId;
        this.createBy = createBy;
        this.createTime = createTime;
        this.updateBy = updateBy;
        this.updateTime = updateTime;
        this.memo = memo;
    }
//    Sta sta = new Sta(
//            null,    // 编号
//            null,    // 库区
//            null,    // 站号
//            null,    // 名称
//            null,    // 站类型[非空]
//            null,    // 条码
//            null,    // 偏移量
//            null,    // 自动
//            null,    // 有物
//            null,    // 可入
//            null,    // 可出
//            null,    // 托盘码
//            null,    // 站状态
//            null,    // 状态[非空]
//            null,    // 是否删除[非空]
//            null,    // 租户
//            null,    // 添加人员
//            null,    // 添加时间[非空]
//            null,    // 修改人员
//            null,    // 修改时间
//            null    // 备注
//    );
    public String getZoneId$(){
        ZoneService service = SpringUtils.getBean(ZoneService.class);
@@ -252,17 +208,16 @@
        }
    }
    public String getDeleted$(){
        if (null == this.deleted){ return null; }
        switch (this.deleted){
    public Boolean getStatusBool(){
        if (null == this.status){ return null; }
        switch (this.status){
            case 1:
                return "是";
                return true;
            case 0:
                return "否";
                return false;
            default:
                return String.valueOf(this.deleted);
                return null;
        }
    }
}