Sfoglia il codice sorgente

修改实体类岗位审核状态

LiFei 6 anni fa
parent
commit
f4fe49d4a7

+ 0 - 19
happy-boot-module-hppay/src/main/java/org/jeecg/modules/api/dpposition/entity/PositionAPI.java

@@ -145,25 +145,6 @@ public class PositionAPI {
     @ApiModelProperty(value = "岗位福利(0:包住宿 1:包工作餐 2:交通补助 3:加班补助 4:有提成 5:奖金 6:转正机会),可多选,数组存储")
     private java.lang.String welfare;
 
-    public String getWelfare() {
-        if(StringUtils.isNotBlank(welfare)){
-            String[] str= welfare.split(",");
-            if(str.length>1){
-                welfare="";
-                for (int i = 0; i <str.length ; i++) {
-                    welfare=welfare+DictUtils.getDictLabel(str[i],"welfare","");
-                }
-            }else {
-                welfare=DictUtils.getDictLabel(str[0],"welfare","");
-            }
-        }
-        return welfare;
-    }
-
-    public void setWelfare(String welfare) {
-        this.welfare = welfare;
-    }
-
     /**班车(全职)(0:没有 1:有)*/
     @Dict(dicCode="has_regular_bus")
     @Excel(name = "班车(全职)(0:没有 1:有)", width = 15)