新增待办信息
This commit is contained in:
@@ -44,7 +44,7 @@ import java.io.Serial;
|
||||
@Column(name = "ustatus", attrName = "ustatus", label = "会议状态"),
|
||||
@Column(name = "remark", attrName = "remark", label = "补充说明", isQuery = false),
|
||||
@Column(name = "create_user", attrName = "createUser", label = "创建人员", isUpdate = false),
|
||||
@Column(name = "update_time", attrName = "updateTime", label = "更新时间", isQuery = false, isUpdateForce = true),
|
||||
@Column(name = "update_time", attrName = "updateTime", label = "更新时间", isQuery = false),
|
||||
@Column(name = "f_tenant_id", attrName = "ftenantId", label = "租户id", isUpdate = false, isQuery = false),
|
||||
@Column(name = "f_flow_id", attrName = "fflowId", label = "流程id", isUpdate = false, isQuery = false),
|
||||
@Column(name = "f_flow_task_id", attrName = "fflowTaskId", label = "流程任务主键", isUpdate = false, isQuery = false),
|
||||
@@ -83,11 +83,11 @@ public class BizMeetingInfo extends DataEntity<BizMeetingInfo> implements Serial
|
||||
@ExcelField(title = "会议内容", attrName = "meetingContent", align = Align.CENTER, sort = 50),
|
||||
@ExcelField(title = "参会人员", attrName = "meetingUser", align = Align.CENTER, sort = 60),
|
||||
@ExcelField(title = "其他人员", attrName = "otherUser", align = Align.CENTER, sort = 70),
|
||||
@ExcelField(title = "会议类型", attrName = "meetingType", align = Align.CENTER, sort = 80),
|
||||
@ExcelField(title = "会议类型", attrName = "meetingType", dictType = "meeting_type", align = Align.CENTER, sort = 80),
|
||||
@ExcelField(title = "开始时间", attrName = "startTime", align = Align.CENTER, sort = 90, dataFormat = "yyyy-MM-dd hh:mm"),
|
||||
@ExcelField(title = "结束时间", attrName = "endTime", align = Align.CENTER, sort = 100, dataFormat = "yyyy-MM-dd hh:mm"),
|
||||
@ExcelField(title = "会议地点", attrName = "meetingLocation", align = Align.CENTER, sort = 110),
|
||||
@ExcelField(title = "会议状态", attrName = "ustatus", align = Align.CENTER, sort = 120),
|
||||
@ExcelField(title = "会议状态", attrName = "ustatus", dictType = "meeting_status", align = Align.CENTER, sort = 120),
|
||||
@ExcelField(title = "补充说明", attrName = "remark", align = Align.CENTER, sort = 130),
|
||||
@ExcelField(title = "创建人员", attrName = "createUser", align = Align.CENTER, sort = 140),
|
||||
@ExcelField(title = "更新时间", attrName = "updateTime", align = Align.CENTER, sort = 150, dataFormat = "yyyy-MM-dd hh:mm"),
|
||||
|
||||
@@ -106,7 +106,6 @@ public class BizCalendarScheduleController extends BaseController {
|
||||
}
|
||||
bizCalendarSchedule.setCreatorUser(user.getLoginCode());
|
||||
bizCalendarSchedule.setParticipantName(fUser.getUserName());
|
||||
bizCalendarSchedule.setUpdateTime(vDate.getUpdateTime(bizCalendarSchedule.getIsNewRecord()));
|
||||
bizCalendarScheduleService.save(bizCalendarSchedule);
|
||||
return renderResult(Global.TRUE, text("保存日程信息成功!"));
|
||||
}
|
||||
|
||||
@@ -88,7 +88,6 @@ public class BizDbConfigController extends BaseController {
|
||||
@PostMapping(value = "save")
|
||||
@ResponseBody
|
||||
public String save(@Validated BizDbConfig bizDbConfig) {
|
||||
bizDbConfig.setUpdateTime(vDate.getUpdateTime(bizDbConfig.getIsNewRecord()));
|
||||
bizDbConfigService.save(bizDbConfig);
|
||||
return renderResult(Global.TRUE, text("保存连接信息成功!"));
|
||||
}
|
||||
|
||||
@@ -93,7 +93,6 @@ public class BizMonitorAccountController extends BaseController {
|
||||
if (bizMonitorAccount.getIsNewRecord()) {
|
||||
bizMonitorAccount.setSshPassword(vo.getEncode(bizMonitorAccount.getSshPassword()));
|
||||
} else {
|
||||
bizMonitorAccount.setUpdateTime(new Date());
|
||||
BizMonitorAccount account = bizMonitorAccountService.get(bizMonitorAccount.getAccountId());
|
||||
if (!account.getSshPassword().equals(bizMonitorAccount.getSshPassword())) {
|
||||
bizMonitorAccount.setSshPassword(vo.getEncode(bizMonitorAccount.getSshPassword()));
|
||||
|
||||
@@ -89,7 +89,6 @@ public class BizMonitorHostController extends BaseController {
|
||||
@PostMapping(value = "save")
|
||||
@ResponseBody
|
||||
public String save(@Validated BizMonitorHost bizMonitorHost) {
|
||||
bizMonitorHost.setUpdateTime(vDate.getUpdateTime(bizMonitorHost.getIsNewRecord()));
|
||||
bizMonitorHostService.save(bizMonitorHost);
|
||||
return renderResult(Global.TRUE, text("保存主机信息成功!"));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user