@ -29,4 +29,10 @@ public class TaskPointDto implements Serializable {
@ApiModelProperty("是否生效,1-生效 2-不生效")
private Integer valid;
@ApiModelProperty("APP动作")
private String action;
@ApiModelProperty("提示语")
private String tooltip;
}
@ -28,6 +28,9 @@ public class TaskPointForAppDto implements Serializable {
String action;
String tooltip;
@Transient
@ApiModelProperty(value = "用户任务状态 1-已参加 2-未参加")
Integer userStatus;
@ -79,9 +79,15 @@ public class TaskPoint implements Serializable {
private String updateUser;
@Column(name = "valid")
@Column(name = "action")
@Column(name = "tooltip")
@ -35,5 +35,8 @@ alter table tb_lottery_region
alter table tb_lottery_user
add show_time varchar(50) null comment '演出时间';
alter table tb_task_point
add tooltip varchar(50) null comment '提示信息';