mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-14 05:16:49 +08:00
提交推送任务
This commit is contained in:
@@ -13,41 +13,57 @@ import java.time.LocalDateTime;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 案例推荐表
|
* 案例推荐表
|
||||||
* */
|
*/
|
||||||
@Data
|
@Data
|
||||||
@Entity
|
@Entity
|
||||||
@EqualsAndHashCode(callSuper = false)
|
@EqualsAndHashCode(callSuper = false)
|
||||||
@Table(name = SysConstant.TABLE_PRE+"cases_recommend")
|
@Table(name = SysConstant.TABLE_PRE + "cases_recommend")
|
||||||
public class CasesRecommend extends BaseEntity {
|
public class CasesRecommend extends BaseEntity {
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/**推荐人ID*/
|
/**
|
||||||
@Column(name = "recommend_id",nullable = false,length = 100)
|
* 推荐人ID
|
||||||
|
*/
|
||||||
|
@Column(name = "recommend_id", length = 100)
|
||||||
private String recommendId;
|
private String recommendId;
|
||||||
|
|
||||||
/**推荐人*/
|
/**
|
||||||
|
* 推荐人
|
||||||
|
*/
|
||||||
@Column(name = "recommend_by", length = 255)
|
@Column(name = "recommend_by", length = 255)
|
||||||
private String recommendBy;
|
private String recommendBy;
|
||||||
|
|
||||||
/**推荐时间*/
|
/**
|
||||||
|
* 推荐时间
|
||||||
|
*/
|
||||||
@Column(name = "recommend_time")
|
@Column(name = "recommend_time")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
private LocalDateTime recommendTime;
|
private LocalDateTime recommendTime;
|
||||||
/**案例数*/
|
/**
|
||||||
@Column(name = "case_count",length = 11)
|
* 案例数
|
||||||
|
*/
|
||||||
|
@Column(name = "case_count", length = 11)
|
||||||
private Integer caseCount;
|
private Integer caseCount;
|
||||||
/**用户数*/
|
/**
|
||||||
@Column(name = "user_count",length = 11)
|
* 用户数
|
||||||
|
*/
|
||||||
|
@Column(name = "user_count", length = 11)
|
||||||
private Integer userCount;
|
private Integer userCount;
|
||||||
/**推送进度*/
|
/**
|
||||||
|
* 推送进度
|
||||||
|
*/
|
||||||
@Column(name = "push_progress")
|
@Column(name = "push_progress")
|
||||||
private Integer pushProgress;
|
private Integer pushProgress;
|
||||||
/**查看率*/
|
/**
|
||||||
|
* 查看率
|
||||||
|
*/
|
||||||
@Column(name = "view_rate", length = 255)
|
@Column(name = "view_rate", length = 255)
|
||||||
private String viewRate;
|
private String viewRate;
|
||||||
|
|
||||||
/**推荐组织名称*/
|
/**
|
||||||
|
* 推荐组织名称
|
||||||
|
*/
|
||||||
@Column(name = "recommend_org_name", length = 255)
|
@Column(name = "recommend_org_name", length = 255)
|
||||||
private String recommendOrgName;
|
private String recommendOrgName;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user