首页第一个文章排序问题

This commit is contained in:
daihh
2023-02-01 17:25:52 +08:00
parent 9fee975a2a
commit 99ec0f36ce
3 changed files with 51 additions and 10 deletions

View File

@@ -31,7 +31,6 @@ public class SysManagerApi extends ApiBaseController {
/**
* 分页查询
*
* @return
*/
@PostMapping("/page")
@@ -47,7 +46,6 @@ public class SysManagerApi extends ApiBaseController {
/**
* 保存
*
* @param sysManager
* @return
*/

View File

@@ -0,0 +1,39 @@
package com.xboe.system.user.vo;
import java.util.List;
import lombok.Data;
/**
* 批量消息
*
*/
@Data
public class BatchMessage {
/**
* 提交人id
*/
private List<String> acceptIds;
private List<String> acceptNames;
private String refId;
private String refType;
private Integer pageType;
/**
* 页面参数 默认是id
*/
private String pageParams;
private String sendName;
private String sendAid;
private Integer sendType;
private String title;
}