p-honggang.li
2025-09-03 703ca1c4ac199d13f0345bb913c320845f77f2ee
src/main/java/com/webmanage/entity/PointsFlow.java
@@ -15,7 +15,7 @@
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("points_flow")
@TableName("tb_points_flow")
public class PointsFlow implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -30,13 +30,13 @@
     * 用户ID
     */
    @TableField("user_id")
    private Long userId;
    private String userId;
    /**
     * 单位ID
     */
    @TableField("unit_id")
    private Long unitId;
    private String unitId;
    /**
     * 数据类目
@@ -72,13 +72,13 @@
     * 创建时间
     */
    @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-未删除