| | |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @TableName("points_flow") |
| | | @TableName("tb_points_flow") |
| | | public class PointsFlow implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | * 用户ID |
| | | */ |
| | | @TableField("user_id") |
| | | private Long userId; |
| | | private String userId; |
| | | |
| | | /** |
| | | * 单位ID |
| | | */ |
| | | @TableField("unit_id") |
| | | private Long unitId; |
| | | private String unitId; |
| | | |
| | | /** |
| | | * 数据类目 |
| | |
| | | * 创建时间 |
| | | */ |
| | | @TableField(value = "create_time", fill = FieldFill.INSERT) |
| | | private LocalDateTime createTime; |
| | | private LocalDateTime createAt; |
| | | |
| | | /** |
| | | * 更新时间 |
| | | */ |
| | | @TableField(value = "update_time", fill = FieldFill.INSERT_UPDATE) |
| | | private LocalDateTime updateTime; |
| | | private LocalDateTime updateAt; |
| | | |
| | | /** |
| | | * 逻辑删除:1-已删除,0-未删除 |