From 4433fd7685641c14d8e4c7da7587740ec22b236e Mon Sep 17 00:00:00 2001 From: huangyawei Date: Sat, 19 Oct 2024 22:16:57 +0800 Subject: [PATCH] =?UTF-8?q?release-=20=E7=A7=AF=E5=88=86=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=8F=90=E7=A4=BA=E8=AF=AD=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/luoo/user/dto/point/TaskPointDto.java | 6 ++++++ .../java/com/luoo/user/dto/point/TaskPointForAppDto.java | 3 +++ luoo_user/src/main/java/com/luoo/user/pojo/TaskPoint.java | 6 ++++++ luoo_user/src/main/resources/sql/20240904.sql | 3 +++ 4 files changed, 18 insertions(+) diff --git a/luoo_user/src/main/java/com/luoo/user/dto/point/TaskPointDto.java b/luoo_user/src/main/java/com/luoo/user/dto/point/TaskPointDto.java index 3f1788a..c599c1f 100644 --- a/luoo_user/src/main/java/com/luoo/user/dto/point/TaskPointDto.java +++ b/luoo_user/src/main/java/com/luoo/user/dto/point/TaskPointDto.java @@ -29,4 +29,10 @@ public class TaskPointDto implements Serializable { @ApiModelProperty("是否生效,1-生效 2-不生效") private Integer valid; + + @ApiModelProperty("APP动作") + private String action; + + @ApiModelProperty("提示语") + private String tooltip; } \ No newline at end of file diff --git a/luoo_user/src/main/java/com/luoo/user/dto/point/TaskPointForAppDto.java b/luoo_user/src/main/java/com/luoo/user/dto/point/TaskPointForAppDto.java index 1cb16c0..1633182 100644 --- a/luoo_user/src/main/java/com/luoo/user/dto/point/TaskPointForAppDto.java +++ b/luoo_user/src/main/java/com/luoo/user/dto/point/TaskPointForAppDto.java @@ -28,6 +28,9 @@ public class TaskPointForAppDto implements Serializable { @ApiModelProperty("APP动作") String action; + @ApiModelProperty("提示语") + String tooltip; + @Transient @ApiModelProperty(value = "用户任务状态 1-已参加 2-未参加") Integer userStatus; diff --git a/luoo_user/src/main/java/com/luoo/user/pojo/TaskPoint.java b/luoo_user/src/main/java/com/luoo/user/pojo/TaskPoint.java index 207e60b..c4401ee 100644 --- a/luoo_user/src/main/java/com/luoo/user/pojo/TaskPoint.java +++ b/luoo_user/src/main/java/com/luoo/user/pojo/TaskPoint.java @@ -79,9 +79,15 @@ public class TaskPoint implements Serializable { private String updateUser; @ApiModelProperty("是否生效,1-生效 2-不生效") + @Column(name = "valid") private Integer valid; @ApiModelProperty("APP动作") + @Column(name = "action") private String action; + @ApiModelProperty("提示语") + @Column(name = "tooltip") + private String tooltip; + } \ No newline at end of file diff --git a/luoo_user/src/main/resources/sql/20240904.sql b/luoo_user/src/main/resources/sql/20240904.sql index 2d5efa7..e7fe354 100644 --- a/luoo_user/src/main/resources/sql/20240904.sql +++ b/luoo_user/src/main/resources/sql/20240904.sql @@ -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 '提示信息'; +