#
Junjie
2024-01-11 901b2ab3e0e7c592602848cfa256f34c5b0c7bb8
zy-asrs-common/src/main/java/com/zy/asrs/common/domain/entity/StaDesc.java
@@ -64,15 +64,15 @@
    /**
     * 堆垛机号
     */
    @ApiModelProperty(value= "堆垛机号")
    @TableField("crn_no")
    private Integer crnNo;
    @ApiModelProperty(value= "设备号")
    @TableField("device_no")
    private Integer deviceNo;
    /**
     * 堆垛机站点
     */
    @ApiModelProperty(value= "堆垛机站点")
    private Integer crnStn;
    @ApiModelProperty(value= "设备站点")
    private Integer deviceStn;
    /**
     * 备注
@@ -114,13 +114,13 @@
    public StaDesc() {}
    public StaDesc(Integer typeNo,String typeDesc,Integer stnNo,String stnDesc,Integer crnNo,Integer crnStn,String memo,Long modiUser,Date modiTime,Long appeUser,Date appeTime,Long hostId) {
    public StaDesc(Integer typeNo,String typeDesc,Integer stnNo,String stnDesc,Integer deviceNo,Integer deviceStn,String memo,Long modiUser,Date modiTime,Long appeUser,Date appeTime,Long hostId) {
        this.typeNo = typeNo;
        this.typeDesc = typeDesc;
        this.stnNo = stnNo;
        this.stnDesc = stnDesc;
        this.crnNo = crnNo;
        this.crnStn = crnStn;
        this.deviceNo = deviceNo;
        this.deviceStn = deviceStn;
        this.memo = memo;
        this.modiUser = modiUser;
        this.modiTime = modiTime;
@@ -162,9 +162,9 @@
        return null;
    }
    public String getCrnStn$(){
    public String getDeviceStn$(){
        BasDevpService service = SpringUtils.getBean(BasDevpService.class);
        BasDevp basDevp = service.getById(this.crnStn);
        BasDevp basDevp = service.getById(this.deviceStn);
        if (!Cools.isEmpty(basDevp)){
            return String.valueOf(basDevp.getDevNo());
        }