完成了第一版

This commit is contained in:
2025-05-15 14:19:12 +08:00
parent 1a14df8296
commit 943454c734
5 changed files with 124 additions and 15 deletions

View File

@ -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;

View File

@ -79,6 +79,11 @@ public class ProjectSettlement implements Serializable {
*/
private Long superId;
/**
* 用户id
*/
private Long userId;
/**
* 是否删除
*/