package cn.lili.modules.lmk.domain.entity;
|
|
import cn.lili.mybatis.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
import lombok.Data;
|
|
/**
|
* 私厨定制广告图片
|
*
|
* @author peng
|
* @since 2025-12-24
|
*/
|
@Data
|
@TableName("lmk_ad_img")
|
public class AdImg extends BaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableField("sort")
|
/** */
|
private Integer sort;
|
|
@TableField("open_type")
|
/** 打开类型 */
|
private String openType;
|
|
@TableField("direct_url")
|
/** 跳转路径 */
|
private String directUrl;
|
|
@TableField("cover_url")
|
/** 图片地址 */
|
private String coverUrl;
|
|
|
}
|