Files
AI-Check-Test/jnpf-ftb/jnpf-ftb-entity/src/main/java/jnpf/entity/culture/CultureClockIn.java
dongzi 3cba3bb74e
Some checks failed
API接口参数变更检测 / api-param-check (push) Has been cancelled
commit
2026-06-05 16:18:40 +08:00

53 lines
1.2 KiB
Java

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<String> 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;
}