新增待办信息
This commit is contained in:
@@ -49,7 +49,7 @@ import java.io.Serial;
|
|||||||
@Column(name = "f_flow_id", attrName = "fflowId", 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),
|
@Column(name = "f_flow_task_id", attrName = "fflowTaskId", label = "流程任务主键", isUpdate = false, isQuery = false),
|
||||||
@Column(name = "f_flow_state", attrName = "fflowState", label = "流程任务状态", isUpdate = false, isQuery = false, isUpdateForce = true),
|
@Column(name = "f_flow_state", attrName = "fflowState", label = "流程任务状态", isUpdate = false, isQuery = false, isUpdateForce = true),
|
||||||
}, orderBy = "a.id DESC"
|
}, orderBy = "a.create_time DESC"
|
||||||
)
|
)
|
||||||
@Data
|
@Data
|
||||||
public class BizMeetingInfo extends DataEntity<BizMeetingInfo> implements Serializable {
|
public class BizMeetingInfo extends DataEntity<BizMeetingInfo> implements Serializable {
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
package com.jeesite.modules.biz.web;
|
package com.jeesite.modules.biz.web;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import com.jeesite.modules.sys.entity.User;
|
||||||
|
import com.jeesite.modules.sys.utils.UserUtils;
|
||||||
import jakarta.servlet.http.HttpServletRequest;
|
import jakarta.servlet.http.HttpServletRequest;
|
||||||
import jakarta.servlet.http.HttpServletResponse;
|
import jakarta.servlet.http.HttpServletResponse;
|
||||||
|
|
||||||
@@ -26,6 +29,7 @@ import com.jeesite.modules.biz.service.BizMeetingInfoService;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 会议主表Controller
|
* 会议主表Controller
|
||||||
|
*
|
||||||
* @author gaoxq
|
* @author gaoxq
|
||||||
* @version 2026-01-02
|
* @version 2026-01-02
|
||||||
*/
|
*/
|
||||||
@@ -86,6 +90,8 @@ public class BizMeetingInfoController extends BaseController {
|
|||||||
@PostMapping(value = "save")
|
@PostMapping(value = "save")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public String save(@Validated BizMeetingInfo bizMeetingInfo) {
|
public String save(@Validated BizMeetingInfo bizMeetingInfo) {
|
||||||
|
User user = UserUtils.getUser();
|
||||||
|
bizMeetingInfo.setCreateUser(user.getLoginCode());
|
||||||
bizMeetingInfoService.save(bizMeetingInfo);
|
bizMeetingInfoService.save(bizMeetingInfo);
|
||||||
return renderResult(Global.TRUE, text("保存会议信息成功!"));
|
return renderResult(Global.TRUE, text("保存会议信息成功!"));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user