项目明细调整

This commit is contained in:
2025-05-10 17:53:28 +08:00
parent 6e9a542d15
commit a46444c3d5
2 changed files with 25 additions and 17 deletions

View File

@ -27,6 +27,7 @@ import java.math.BigDecimal;
"applyPromoCodeDesc",
"projectSettlementCycle",
"maxPromoterCount",
"projectStatus"
})
public class ProjectUpdateRequest implements Serializable {
@ -99,6 +100,12 @@ public class ProjectUpdateRequest implements Serializable {
@Schema(description = "最大推广人数", example = "200")
private Integer maxPromoterCount;
/**
* 项目状态[项目运行(running)|人数已满(full)|项目暂停(paused)]
*/
@Schema(description = "项目状态[项目运行(running)|人数已满(full)|项目暂停(paused)]", example = "running")
private String projectStatus;
@Serial