fix:【mall】分销用户创建时,缺少对 bindUserId 的校验

This commit is contained in:
YunaiV
2026-01-18 12:14:58 +08:00
parent 26ee50de88
commit fdfca8588f

View File

@@ -13,6 +13,7 @@ public class BrokerageUserCreateReqVO {
private Long userId;
@Schema(description = "推广员编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "4587")
@NotNull(message = "推广员编号不能为空")
private Long bindUserId;
}