| | |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.yuanchu.mom.annotation.ValueTableShow; |
| | | import com.yuanchu.mom.common.OrderBy; |
| | |
| | | */ |
| | | @NotNull(message="[]不能为空") |
| | | @ApiModelProperty("主键") |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | | /** |
| | | * 登记人 |
| | |
| | | @Size(max= 255,message="编码长度不能超过255") |
| | | @ApiModelProperty("创建用户") |
| | | @Length(max= 255,message="编码长度不能超过255") |
| | | private String createUser; |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | /** |
| | | * |
| | | */ |
| | | @Size(max= 255,message="编码长度不能超过255") |
| | | @ApiModelProperty("更新用户") |
| | | @Length(max= 255,message="编码长度不能超过255") |
| | | private String updateUser; |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Integer updateUser; |
| | | |
| | | } |