luodangjia
2024-04-18 d691260a76d629a96014e4f3d0b4ccca6c29ccb2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cn.stylefeng.roses.kernel.customer.modular.request;
 
import cn.stylefeng.roses.kernel.rule.annotation.ChineseDescription;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@ApiModel("C端用户ID封装类")
@Data
public class CustomerIdRequest {
 
    /**
     * 主键id
     */
    @NotNull(message = "主键id不能为空")
    @ChineseDescription("主键id")
    private Long customerId;
 
}