package jnpf.entity.culture; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import jnpf.base.entity.SuperBaseEntity; import lombok.EqualsAndHashCode; import lombok.Getter; import lombok.Setter; import lombok.NoArgsConstructor; import java.io.Serializable; import java.time.LocalDate; import java.util.Date; /** * 文化打卡 - 用户打卡记录 * @author yanwenfu * @create 2025-12-23 */ @Getter @Setter @NoArgsConstructor @EqualsAndHashCode(callSuper = true) @TableName ( value ="ftb_culture_clock_in" ) public class CultureClockIn extends SuperBaseEntity.SuperCUDBaseEntity implements Serializable { private static final long serialVersionUID = 5349314625289524403L; /** 用户ID */ @TableField(value = "F_UserId") private String userId; /** 打卡日期 */ @TableField(value = "F_ClockInDate") private LocalDate clockInDate; /** 打卡时间 */ @TableField(value = "F_ClockInTime") private Date clockInTime; /** 文案ID */ @TableField(value = "F_ContentId") private String contentId; /** 图片ID */ @TableField(value = "F_PicId") private String picId; /** 图片地址 */ @TableField(value = "F_PicUrl") private String picUrl; }