update:修改用户名的字段返回值
This commit is contained in:
+5
-1
@@ -259,7 +259,11 @@ public class TranslationAspect {
|
||||
continue; //跳过循环
|
||||
}
|
||||
if (!StringUtils.isEmpty(table) && StrUtil.isNotBlank(text)) {
|
||||
tmpValue = commonAPI.queryTableDictTextByKey(table, text, code, k.trim());
|
||||
if ("sys_user".equals(table)&&"realname".equals(text)&&"id".equals(code)){
|
||||
tmpValue = commonAPI.translateUserRealNameFromTable(k.trim());
|
||||
}else {
|
||||
tmpValue = commonAPI.queryTableDictTextByKey(table, text, code, k.trim());
|
||||
}
|
||||
} else {
|
||||
List<SysDictItemCore> listNew = listDict.stream()
|
||||
.filter(o -> Objects.equals(o.getDictCode(), code) &&
|
||||
|
||||
@@ -83,6 +83,7 @@ public class LawsClubJoinTeam implements Serializable {
|
||||
private String contacts;
|
||||
|
||||
@ApiModelProperty(value = "备注")
|
||||
@Excel(name = "备注", width = 20)
|
||||
private String remark;
|
||||
|
||||
@ApiModelProperty(value = "创建人")
|
||||
|
||||
@@ -79,6 +79,7 @@ public class LawsClubMeeting implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "通知部门专业模块")
|
||||
@Dict(dicCode = "professional_module")
|
||||
@Excel(name = "通知部门专业模块", dicCode = "professional_module")
|
||||
private String informSpecializedModule;
|
||||
|
||||
@ApiModelProperty(value = "是否宣贯 0-否 1-是")
|
||||
|
||||
+2
-1
@@ -52,7 +52,7 @@ public class LawsClubMeetingMember implements Serializable {
|
||||
private String departId;
|
||||
|
||||
@ApiModelProperty(value = "参会部门专业模块")
|
||||
@Excel(name = "参会部门专业模块", dicCode = "professional_module")
|
||||
@Excel(name = "参会部门专业模块", width = 20, dicCode = "professional_module")
|
||||
@Dict(dicCode = "professional_module")
|
||||
private String meetingSpecializedModule;
|
||||
|
||||
@@ -62,6 +62,7 @@ public class LawsClubMeetingMember implements Serializable {
|
||||
private String meetingFileId;
|
||||
|
||||
@ApiModelProperty(value = "备注")
|
||||
@Excel(name = "备注",width = 20)
|
||||
private String remark;
|
||||
|
||||
@ApiModelProperty(value = "创建人")
|
||||
|
||||
Reference in New Issue
Block a user