修复bug。

This commit is contained in:
chenyanchang
2026-05-27 17:15:02 +08:00
parent e8268aa300
commit 1f1a1cb138
2 changed files with 5 additions and 1 deletions

View File

@@ -101,7 +101,7 @@ public class IndustryController extends BaseController
* 修改行业
*/
@ApiOperation("修改行业")
@PreAuthorize("@ss.hasPermi('cms:industry:edit')")
// @PreAuthorize("@ss.hasPermi('cms:industry:edit')")
@Log(title = "行业", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody Industry industry)

View File

@@ -165,4 +165,8 @@ public class AppUser extends BaseEntity
@ApiModelProperty("地纬userid")
private String dwUserid;
/** 1-残疾人;2-职业(技工)院校毕业生;3-退役军人;4-高校毕业生;5-脱贫劳动力;6-零就业家庭人员;7-就业困难人员;8-失业人员;9-低保家庭 **/
@ApiModelProperty("用户类型,以逗号分隔")
private String userType;
}