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,38 @@
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;
/**
* 文化打卡 - 组合缓存
* @author yanwenfu
* @create 2025-12-23
*/
@Getter
@Setter
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
@TableName ( value ="ftb_culture_pic_temp" )
public class CulturePicTemp extends SuperBaseEntity.SuperCUDBaseEntity<String> implements Serializable {
private static final long serialVersionUID = 4533963108615902219L;
/** 文案id */
@TableField(value = "F_ContentId")
private String contentId;
/** 图片id */
@TableField(value = "F_PicId")
private String picId;
/** 组合图片url */
@TableField(value = "F_TempUrl")
private String tempUrl;
}