用户信息接口修正
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
1864f90fe0
commit
7596e19721
@ -1,16 +1,28 @@
|
|||||||
|
|
||||||
package com.jsl.oa.model.doData;
|
package com.jsl.oa.model.doData;
|
||||||
/*
|
|
||||||
张睿相 Java
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||||
* 总体描述
|
import lombok.Data;
|
||||||
* <p>创建时间:2024/3/11 21:54</p>
|
import lombok.experimental.Accessors;
|
||||||
*
|
|
||||||
* @author 张睿相
|
import java.sql.Timestamp;
|
||||||
* @since v1.0
|
|
||||||
*/
|
@Data
|
||||||
|
@Accessors(chain = true)
|
||||||
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||||
public class ProjectWorkDO {
|
public class ProjectWorkDO {
|
||||||
}
|
private Long id;
|
||||||
|
private Long pid;
|
||||||
|
private Long projectId;
|
||||||
|
private Long principalId;
|
||||||
|
private Integer cycle;
|
||||||
|
private Integer workLoad;
|
||||||
|
private Integer type;
|
||||||
|
private String name;
|
||||||
|
private String description;
|
||||||
|
private Integer isDelete;
|
||||||
|
private Integer isFinish;
|
||||||
|
private boolean status;
|
||||||
|
private Timestamp beginTime;
|
||||||
|
private Timestamp completeTime;
|
||||||
|
}
|
@ -1,16 +1,31 @@
|
|||||||
package com.jsl.oa.model.voData;
|
package com.jsl.oa.model.voData;
|
||||||
/*
|
|
||||||
张睿相 Java
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
import lombok.Data;
|
||||||
* 总体描述
|
|
||||||
* <p>创建时间:2024/3/11 21:54</p>
|
import javax.validation.constraints.NotNull;
|
||||||
*
|
import java.sql.Timestamp;
|
||||||
* @author 张睿相
|
|
||||||
* @since v1.0
|
@Data
|
||||||
*/
|
|
||||||
public class ProjectWorkVO {
|
public class ProjectWorkVO {
|
||||||
|
|
||||||
|
private Long pid;
|
||||||
|
@NotNull(message = "项目id不能为空")
|
||||||
|
private Long projectId;
|
||||||
|
@NotNull(message = "负责人id不能为空")
|
||||||
|
private Long principalId;
|
||||||
|
@NotNull(message = "周期不能为空")
|
||||||
|
private Integer cycle;
|
||||||
|
|
||||||
|
private Integer workLoad;
|
||||||
|
@NotNull(message = "类型不能为空")
|
||||||
|
private Integer type;
|
||||||
|
@NotNull(message = "名字不能为空")
|
||||||
|
private String name;
|
||||||
|
private String description;
|
||||||
|
private Integer isDelete;
|
||||||
|
private Integer isFinish;
|
||||||
|
private Integer status;
|
||||||
|
private Timestamp beginTime;
|
||||||
|
private Timestamp completeTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user