commit
Some checks failed
API接口参数变更检测 / api-param-check (push) Has been cancelled

This commit is contained in:
2026-06-05 16:18:40 +08:00
parent 1ca34c6bb2
commit 3cba3bb74e
4393 changed files with 450030 additions and 103 deletions

View File

@@ -0,0 +1,52 @@
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;
}