RuoYi/ruoyi-system/src/main/java/com/ruoyi/system/domain/ClewMaterial.java

63 lines
1.2 KiB
Java
Raw Normal View History

2023-10-07 16:40:46 +08:00
package com.ruoyi.system.domain;
import lombok.Data;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
/**
* 素材对象 clew_material
*
* @author ruoyi
* @date 2023-10-07
*/
@Data
public class ClewMaterial extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
private Long id;
/** 标题 */
@Excel(name = "标题")
private String title;
/** 图片 */
@Excel(name = "图片")
private String imgUrl;
@Excel(name = "详情")
private String detail;
/** 视频 */
@Excel(name = "视频")
private String videoImg;
/** 标签 */
@Excel(name = "标签")
private String labels;
/** 报名人数 */
@Excel(name = "报名人数")
private String applyNum;
/** 线索提交内容 */
@Excel(name = "线索提交内容")
private String clewContent;
private Long sourceApp;
2025-11-14 17:57:15 +08:00
/** 点击次数 */
@Excel(name = "点击次数")
private Long clickCount;
2025-11-17 16:28:30 +08:00
/** 提交次数 */
@Excel(name = "提交次数")
private Long submitCount;
/** 有效率 */
@Excel(name = "有效率")
private Double efficiencyRate;
2023-10-07 16:40:46 +08:00
}