mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-09 02:46:50 +08:00
提交弹出窗口增加次数条件
This commit is contained in:
@@ -15,10 +15,11 @@ import java.time.LocalDateTime;
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@Entity
|
||||
@Table(name = SysConstant.TABLE_PRE+"popup")
|
||||
public class Popup extends IdEntity {
|
||||
public class Popup extends IdEntity {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
/**
|
||||
* 开始时间
|
||||
* */
|
||||
@Column(name = "start_time")
|
||||
@@ -61,6 +62,12 @@ public class Popup extends IdEntity {
|
||||
* */
|
||||
@Column(name = "title",length = 50)
|
||||
private String title;
|
||||
|
||||
/**
|
||||
* 弹出次数
|
||||
*/
|
||||
@Column(name = "times",length = 2)
|
||||
private Integer times;
|
||||
|
||||
/**
|
||||
* 弹窗内容
|
||||
|
||||
Reference in New Issue
Block a user