mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-24 18:23:05 +08:00
首页第一个文章排序问题
This commit is contained in:
@@ -31,7 +31,6 @@ public class SysManagerApi extends ApiBaseController {
|
||||
|
||||
/**
|
||||
* 分页查询
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@PostMapping("/page")
|
||||
@@ -47,7 +46,6 @@ public class SysManagerApi extends ApiBaseController {
|
||||
|
||||
/**
|
||||
* 保存
|
||||
*
|
||||
* @param sysManager
|
||||
* @return
|
||||
*/
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user