增加标签字段
Some checks failed
JslGroup/JslDeveloper/JSL_OrganizeInternalOA/pipeline/head There was a failure building this commit

This commit is contained in:
176yunxuan 2024-03-15 21:19:23 +08:00
parent d05c6141dc
commit ea457a6604
2 changed files with 3 additions and 2 deletions

View File

@ -15,9 +15,9 @@ public interface ProjectMapper {
@Insert("insert into organize_oa.oa_project " +
"(name, description, principal_id, cycle,file,complete_time," +
"deadline,status,is_finish) " +
"deadline,status,is_finish,tags) " +
"value (#{name},#{description},#{principalId},#{cycle},#{file}" +
",#{completeTime},#{deadline},#{status},#{isFinish})")
",#{completeTime},#{deadline},#{status},#{isFinish},#{tags})")
void projectAdd(ProjectInfoVO projectAdd);
@Insert("insert into organize_oa.oa_project_work (project_id, pid, name, principal_id," +

View File

@ -17,6 +17,7 @@ public class ProjectInfoVO {
private String description;
@NotNull(message = "周期不能为空")
private Long cycle;
private String tags;
private String file;
private Timestamp completeTime;
private Timestamp deadline;