forked from YunaiV/yudao-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc3c97d
commit ee5eacc
Showing
10 changed files
with
298 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
system/system-service-api/src/main/java/cn/iocoder/mall/admin/api/bo/sms/PageSmsSignBO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
package cn.iocoder.mall.admin.api.bo.sms; | ||
|
||
import com.baomidou.mybatisplus.annotation.TableId; | ||
import lombok.Data; | ||
import lombok.experimental.Accessors; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* sms page | ||
* | ||
* @author Sin | ||
* @time 2019/5/19 4:23 PM | ||
*/ | ||
@Data | ||
@Accessors(chain = true) | ||
public class PageSmsSignBO { | ||
|
||
private Integer count; | ||
|
||
private Long current; | ||
|
||
private Long size; | ||
|
||
private Long total; | ||
|
||
private List<Sign> data; | ||
|
||
@Data | ||
@Accessors(chain = true) | ||
public class Sign { | ||
/** | ||
* 编号 | ||
*/ | ||
private Integer id; | ||
/** | ||
* 签名id 这个是第三方的 | ||
*/ | ||
private String platformId; | ||
/** | ||
* 签名名称 | ||
*/ | ||
private String sign; | ||
/** | ||
* 审核状态 | ||
* | ||
* - 1、审核中 | ||
* - 2、审核成功 | ||
* - 3、审核失败 | ||
*/ | ||
private Integer applyStatus; | ||
/** | ||
* 审核信息 | ||
*/ | ||
private String applyMessage; | ||
} | ||
} |
95 changes: 95 additions & 0 deletions
95
.../system-service-api/src/main/java/cn/iocoder/mall/admin/api/bo/sms/PageSmsTemplateBO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
package cn.iocoder.mall.admin.api.bo.sms; | ||
|
||
import lombok.Data; | ||
import lombok.experimental.Accessors; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* sms page | ||
* | ||
* @author Sin | ||
* @time 2019/5/19 4:23 PM | ||
*/ | ||
@Data | ||
@Accessors(chain = true) | ||
public class PageSmsTemplateBO { | ||
|
||
private Long total; | ||
|
||
private Long current; | ||
|
||
private Long size; | ||
|
||
private List<Template> data; | ||
|
||
@Data | ||
@Accessors(chain = true) | ||
public class Template { | ||
/** | ||
* 编号 | ||
*/ | ||
private Integer id; | ||
/** | ||
* 模板编号 (第三方的) | ||
*/ | ||
private Integer smsSignId; | ||
/** | ||
* 短信签名 id | ||
*/ | ||
private String platformId; | ||
/** | ||
* 短信模板 | ||
*/ | ||
private String template; | ||
/** | ||
* 审核状态 | ||
* | ||
* 1、审核中 | ||
* 2、审核成功 | ||
* 3、审核失败 | ||
*/ | ||
private Integer applyStatus; | ||
/** | ||
* 审核信息 | ||
*/ | ||
private String applyMessage; | ||
|
||
/// | ||
/// 关联字段 | ||
|
||
/** | ||
* 签名信息 | ||
*/ | ||
private Sign sign; | ||
} | ||
|
||
@Data | ||
@Accessors(chain = true) | ||
public class Sign { | ||
/** | ||
* 编号 | ||
*/ | ||
private Integer id; | ||
/** | ||
* 签名id 这个是第三方的 | ||
*/ | ||
private String platformId; | ||
/** | ||
* 签名名称 | ||
*/ | ||
private String sign; | ||
/** | ||
* 审核状态 | ||
* | ||
* - 1、审核中 | ||
* - 2、审核成功 | ||
* - 3、审核失败 | ||
*/ | ||
private Integer applyStatus; | ||
/** | ||
* 审核信息 | ||
*/ | ||
private String applyMessage; | ||
} | ||
} |
53 changes: 0 additions & 53 deletions
53
system/system-service-api/src/main/java/cn/iocoder/mall/admin/api/bo/sms/SmsPage.java
This file was deleted.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
...stem-service-api/src/main/java/cn/iocoder/mall/admin/api/dto/sms/PageQuerySmsSignDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package cn.iocoder.mall.admin.api.dto.sms; | ||
|
||
import lombok.Data; | ||
import lombok.experimental.Accessors; | ||
|
||
import java.io.Serializable; | ||
|
||
/** | ||
* page 短信模板 query | ||
* | ||
* @author Sin | ||
* @time 2019/5/19 4:32 PM | ||
*/ | ||
@Data | ||
@Accessors(chain = true) | ||
public class PageQuerySmsSignDTO implements Serializable { | ||
|
||
private Integer pageSize; | ||
|
||
private Integer pageCurrent; | ||
|
||
private String sign; | ||
|
||
private Integer applyStatus; | ||
} |
30 changes: 30 additions & 0 deletions
30
...-service-api/src/main/java/cn/iocoder/mall/admin/api/dto/sms/PageQuerySmsTemplateDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package cn.iocoder.mall.admin.api.dto.sms; | ||
|
||
import lombok.Data; | ||
import lombok.experimental.Accessors; | ||
|
||
import java.io.Serializable; | ||
|
||
/** | ||
* page 短信模板 query | ||
* | ||
* @author Sin | ||
* @time 2019/5/19 4:32 PM | ||
*/ | ||
@Data | ||
@Accessors(chain = true) | ||
public class PageQuerySmsTemplateDTO implements Serializable { | ||
|
||
|
||
private Long current; | ||
|
||
private Long size; | ||
|
||
private String id; | ||
|
||
private Integer smsSignId; | ||
|
||
private String template; | ||
|
||
private String applyStatus; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.