包工头消息
This commit is contained in:
		@ -0,0 +1,26 @@
 | 
			
		||||
package com.ruoyi.wgz.bo.req;
 | 
			
		||||
 | 
			
		||||
import com.ruoyi.common.annotation.Excel;
 | 
			
		||||
import com.ruoyi.common.bo.PageReq;
 | 
			
		||||
import io.swagger.annotations.ApiModel;
 | 
			
		||||
import io.swagger.annotations.ApiModelProperty;
 | 
			
		||||
import io.swagger.v3.oas.annotations.Hidden;
 | 
			
		||||
import lombok.Data;
 | 
			
		||||
import lombok.NoArgsConstructor;
 | 
			
		||||
import lombok.experimental.Accessors;
 | 
			
		||||
 | 
			
		||||
@Data
 | 
			
		||||
@NoArgsConstructor
 | 
			
		||||
@Accessors(chain = true)
 | 
			
		||||
@ApiModel("获取消息列表请求参数")
 | 
			
		||||
public class WgzAppGetMessageListReq extends PageReq {
 | 
			
		||||
	@ApiModelProperty("接收人")
 | 
			
		||||
	@Hidden
 | 
			
		||||
	private Long recipientId;
 | 
			
		||||
 | 
			
		||||
	@ApiModelProperty("大类型(字典)")
 | 
			
		||||
	private String messageLargeType;
 | 
			
		||||
 | 
			
		||||
	@ApiModelProperty("小类型(字典,大类型为【其它】才复制给它)")
 | 
			
		||||
	private String messageSmallType;
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,15 @@
 | 
			
		||||
package com.ruoyi.wgz.bo.res;
 | 
			
		||||
 | 
			
		||||
import io.swagger.annotations.ApiModel;
 | 
			
		||||
import lombok.Data;
 | 
			
		||||
import lombok.NoArgsConstructor;
 | 
			
		||||
import lombok.experimental.Accessors;
 | 
			
		||||
 | 
			
		||||
import java.io.Serializable;
 | 
			
		||||
 | 
			
		||||
@Data
 | 
			
		||||
@NoArgsConstructor
 | 
			
		||||
@Accessors(chain = true)
 | 
			
		||||
@ApiModel("获取消息列表返回参数")
 | 
			
		||||
public class WgzAppGetMessageListRes implements Serializable {
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user