goupan
2024-04-03 5506e9a45e717ffcb67ec313b5a4e8206d9b3a39
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package cn.stylefeng.roses.kernel.expand.modular.modular.pojo.request;
 
import cn.stylefeng.roses.kernel.rule.annotation.ChineseDescription;
import cn.stylefeng.roses.kernel.rule.pojo.request.BaseRequest;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import javax.validation.constraints.NotNull;
 
/**
 * 业务拓展-具体数据封装类
 *
 * @author fengshuonan
 * @date 2022/03/29 23:47
 */
@EqualsAndHashCode(callSuper = true)
@Data
public class SysExpandDataRequest extends BaseRequest {
 
    /**
     * 主键id
     */
    @NotNull(message = "主键id不能为空", groups = {edit.class, delete.class, detail.class})
    @ChineseDescription("主键id")
    private Long expandDataId;
 
    /**
     * 拓展业务id
     */
    @ChineseDescription("拓展业务id")
    private Long expandId;
 
    /**
     * 业务主键id
     */
    @ChineseDescription("业务主键id")
    private Long primaryFieldValue;
 
    /**
     * 拓展业务具体数据
     */
    @ChineseDescription("拓展业务具体数据")
    private String expandData;
 
}