懒羊羊
2023-08-30 71e81ed1d12e4d69f53c8ad9e066650ad4186293
提交 | 用户 | 时间
71e81e 1 package ${package.EntitySpecParams};
2
3 import lombok.Data;
4 import cn.stylefeng.roses.kernel.model.validator.BaseValidatingParam;
5 import java.util.Date;
6 import java.io.Serializable;
7 import java.math.BigDecimal;
8
9 /**
10  * <p>
11  * $!{table.comment}
12  * </p>
13  *
14  * @author ${author}
15  * @since ${date}
16  */
17 @Data
18 public class ${entity}Param implements Serializable, BaseValidatingParam {
19
20     private static final long serialVersionUID = 1L;
21
22 #foreach($field in ${table.fields})
23
24 #if("$!field.comment" != "")
25     /**
26      * ${field.comment}
27      */
28 #end
29     private ${field.propertyType} ${field.propertyName};
30 #end
31
32     @Override
33     public String checkParam() {
34         return null;
35     }
36
37 }