增加标签字段
Some checks failed
JslGroup/JslDeveloper/JSL_OrganizeInternalOA/pipeline/head There was a failure building this commit
Some checks failed
JslGroup/JslDeveloper/JSL_OrganizeInternalOA/pipeline/head There was a failure building this commit
This commit is contained in:
parent
d05c6141dc
commit
ea457a6604
|
@ -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," +
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user