39 lines
946 B
Java
39 lines
946 B
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;
|
|
|
|
/**
|
|
* 文化打卡 - 组合缓存
|
|
* @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;
|
|
}
|