This commit is contained in:
1378012178@qq.com 2025-04-07 14:49:02 +08:00
commit d3b9f4136b
4 changed files with 10 additions and 2 deletions

View File

@ -83,7 +83,7 @@ public class NuBizEmployeesServcieTagsController extends JeecgController<NuBizEm
*/
@AutoLog(value = "员工配置的服务标签-添加")
@ApiOperation(value="员工配置的服务标签-添加", notes="员工配置的服务标签-添加")
@RequiresPermissions("bizEmployeesInfo:nu_biz_employees_servcie_tags:add")
// @RequiresPermissions("bizEmployeesInfo:nu_biz_employees_servcie_tags:add")
@PostMapping(value = "/add")
public Result<String> add(@RequestBody NuBizEmployeesServcieTags nuBizEmployeesServcieTags) {
nuBizEmployeesServcieTagsService.save(nuBizEmployeesServcieTags);
@ -113,7 +113,7 @@ public class NuBizEmployeesServcieTagsController extends JeecgController<NuBizEm
*/
@AutoLog(value = "员工配置的服务标签-通过id删除")
@ApiOperation(value="员工配置的服务标签-通过id删除", notes="员工配置的服务标签-通过id删除")
@RequiresPermissions("bizEmployeesInfo:nu_biz_employees_servcie_tags:delete")
// @RequiresPermissions("bizEmployeesInfo:nu_biz_employees_servcie_tags:delete")
@DeleteMapping(value = "/delete")
public Result<String> delete(@RequestParam(name="id",required=true) String id) {
nuBizEmployeesServcieTagsService.removeById(id);

View File

@ -59,6 +59,9 @@ public class BizEmployeesInfo implements Serializable {
@Excel(name = "联系电话", width = 15)
@ApiModelProperty(value = "联系电话")
private java.lang.String tel;
/**头像*/
@ApiModelProperty(value = "头像")
private java.lang.String headPath;
/**入职时间*/
@Excel(name = "入职时间", width = 15, format = "yyyy-MM-dd")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")

View File

@ -68,6 +68,7 @@ public class LoginUser {
@SensitiveField
private String avatar;
private String loginType;
/**
* 生日
*/

View File

@ -167,6 +167,10 @@ public class SysUser implements Serializable {
*/
private Integer activitiSync;
@Dict(dicCode = "login_type")
private String loginType;
/**
* 身份0 普通成员 1 上级
*/