refactor(crm): 为 CrmCustomerSaveReqVO 类中的 repeatConfirmationFlag 字段添加默认值0

This commit is contained in:
aikai 2025-03-13 15:23:41 +08:00
parent 92850e2d12
commit 521a162233

View File

@ -109,6 +109,6 @@ public class CrmCustomerSaveReqVO {
private Integer followStatus;
@Schema(description = "重复客户依旧添加 0否 1是 默认否", example = "1")
private Integer repeatConfirmationFlag;
private Integer repeatConfirmationFlag = 0;
}