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