短信服务集成
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.njcn.cssystem.pojo.param;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author xy
|
||||
*/
|
||||
@Data
|
||||
public class AppMsgSetParam {
|
||||
|
||||
private String userId;
|
||||
|
||||
private List<String> deviceIds;
|
||||
|
||||
}
|
||||
@@ -28,4 +28,13 @@ public class AppVersionParam implements Serializable {
|
||||
@NotNull(message = "版本类型不能为空")
|
||||
private String versionType;
|
||||
|
||||
@ApiModelProperty("安卓更新地址")
|
||||
private String androidPath;
|
||||
|
||||
@ApiModelProperty("ios更新地址")
|
||||
private String iosPath;
|
||||
|
||||
@ApiModelProperty("版本ID")
|
||||
private String id;
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
package com.njcn.cssystem.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import java.io.Serializable;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 设备发送短信配置表
|
||||
* </p>
|
||||
*
|
||||
* @author xy
|
||||
* @since 2026-04-21
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("app_msg_set")
|
||||
public class AppMsgSet implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键ID
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private String userId;
|
||||
|
||||
/**
|
||||
* 设备ID
|
||||
*/
|
||||
private String deviceId;
|
||||
|
||||
|
||||
}
|
||||
@@ -53,5 +53,14 @@ public class AppVersion extends BaseEntity implements Serializable {
|
||||
*/
|
||||
private String content;
|
||||
|
||||
/**
|
||||
* 安卓更新地址
|
||||
*/
|
||||
private String androidPath;
|
||||
|
||||
/**
|
||||
* ios更新地址
|
||||
*/
|
||||
private String iosPath;
|
||||
|
||||
}
|
||||
|
||||
@@ -22,4 +22,10 @@ public class AppVersionVo implements Serializable {
|
||||
|
||||
@ApiModelProperty("严重度(0:优化 1:bug调整)")
|
||||
private Integer sev;
|
||||
|
||||
@ApiModelProperty("安卓更新地址")
|
||||
private String androidPath;
|
||||
|
||||
@ApiModelProperty("ios更新地址")
|
||||
private String iosPath;
|
||||
}
|
||||
|
||||
@@ -30,6 +30,9 @@ public class WlUserVo implements Serializable {
|
||||
@ApiModelProperty(value = "工程名称")
|
||||
private String name;
|
||||
|
||||
@ApiModelProperty(value = "设备集合")
|
||||
private List<portableDevVo> devList;
|
||||
|
||||
}
|
||||
|
||||
@Data
|
||||
|
||||
Reference in New Issue
Block a user