zjj
2 天以前 20381172d906c4092b9249a9aea2aec85c1bf4e4
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/Purchase.java
@@ -147,6 +147,7 @@
     * 是否删除 1: 是  0: 否
     */
    @ApiModelProperty(value = "是否删除 1: 是  0: 否  ")
    @TableLogic
    private Integer deleted;
    /**
@@ -253,6 +254,21 @@
        return dictDatas.getLabel();
    }
    public String getExceStatus$() {
        if (Cools.isEmpty(this.exceStatus)){
            return "";
        }
        DictDataService dictDataService = SpringUtils.getBean(DictDataService.class);
        DictData dictData = dictDataService.getOne(new LambdaQueryWrapper<DictData>()
                .eq(DictData::getDictTypeCode, DictTypeCode.SYS_PO_EXCE_STATUS)
                .eq(DictData::getValue, this.exceStatus));
        if (Objects.isNull(dictData)) {
            return null;
        }
        return dictData.getLabel();
    }
    public String getWkType$() {
        if (Cools.isEmpty(this.wkType)) {
            return "";