init
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package com.ruoyi.cai.dto.admin.query.syspush;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class SysPushImageContextDTO {
|
||||
private String text;
|
||||
private String image;
|
||||
private Integer linkType;
|
||||
private String linkUrl;
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
package com.ruoyi.cai.dto.admin.query.syspush;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
public class SysPushMasterDTO {
|
||||
private Integer groupId;
|
||||
private String usercode;
|
||||
private String onlyText;
|
||||
|
||||
private String textText1;
|
||||
private String textText2;
|
||||
private Integer textLinkType;
|
||||
private String textLinkUrl;
|
||||
|
||||
private Integer oneImageTitleType;
|
||||
private String oneImageImage;
|
||||
private String oneImageText;
|
||||
private Integer oneImageLinkType;
|
||||
private String oneImageLinkUrl;
|
||||
|
||||
private String onlyImage;
|
||||
|
||||
private Integer sendTimeType;
|
||||
private LocalDateTime sendTime;
|
||||
private String title;
|
||||
private Integer type;
|
||||
private String remark;
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.ruoyi.cai.dto.admin.query.syspush;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class SysPushParams {
|
||||
private SysPushMasterDTO master;
|
||||
private List<SysPushTextContextDTO> textContext;
|
||||
private List<SysPushImageContextDTO> imageContext;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.ruoyi.cai.dto.admin.query.syspush;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class SysPushTextContextDTO {
|
||||
private String n;
|
||||
private String v;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.ruoyi.cai.dto.admin.vo.syspush;
|
||||
|
||||
import com.ruoyi.yunxin.resp.YxCommonR;
|
||||
import com.ruoyi.yunxin.resp.YxDataR;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class SendSysPushResp {
|
||||
|
||||
private YxDataR<YxCommonR> imResp;
|
||||
}
|
||||
Reference in New Issue
Block a user