完成了第一版
This commit is contained in:
@ -22,7 +22,8 @@ import java.time.LocalDateTime;
|
||||
"settlementTime",
|
||||
"promoCodeApplyId",
|
||||
"projectId",
|
||||
"projectDetailId"
|
||||
"projectDetailId",
|
||||
"userId"
|
||||
})
|
||||
public class ProjectSettlementAddRequest implements Serializable {
|
||||
|
||||
@ -78,6 +79,13 @@ public class ProjectSettlementAddRequest implements Serializable {
|
||||
@Schema(description = "项目明细", example = "1")
|
||||
private Long projectDetailId;
|
||||
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
@Min(value = 1L, message = "用户id ID不能小于1")
|
||||
@Schema(description = "用户id", example = "1")
|
||||
private Long userId;
|
||||
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
@ -79,6 +79,11 @@ public class ProjectSettlement implements Serializable {
|
||||
*/
|
||||
private Long superId;
|
||||
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 是否删除
|
||||
*/
|
||||
|
Reference in New Issue
Block a user