增加消息板块
This commit is contained in:
@ -0,0 +1,76 @@
|
||||
package com.ruoyi.wgz.bo;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalTime;
|
||||
import java.time.LocalDate;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 消息分页查询对象 wgz_message
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2025-02-24
|
||||
*/
|
||||
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ApiModel("消息分页查询对象")
|
||||
public class WgzMessageQueryBo extends BaseEntity {
|
||||
|
||||
/** 分页大小 */
|
||||
@ApiModelProperty("分页大小")
|
||||
private Integer pageSize;
|
||||
/** 当前页数 */
|
||||
@ApiModelProperty("当前页数")
|
||||
private Integer pageNum;
|
||||
/** 排序列 */
|
||||
@ApiModelProperty("排序列")
|
||||
private String orderByColumn;
|
||||
/** 排序的方向desc或者asc */
|
||||
@ApiModelProperty(value = "排序的方向", example = "asc,desc")
|
||||
private String isAsc;
|
||||
|
||||
|
||||
/** 发送类型(0系统 1务工者 2包工头) */
|
||||
@ApiModelProperty("发送类型(0系统 1务工者 2包工头)")
|
||||
private String senderType;
|
||||
/** 发送人 */
|
||||
@ApiModelProperty("发送人")
|
||||
private Long senderId;
|
||||
/** 接收类型(1务工者 2包工头) */
|
||||
@ApiModelProperty("接收类型(1务工者 2包工头)")
|
||||
private String recipientType;
|
||||
/** 接收人 */
|
||||
@ApiModelProperty("接收人")
|
||||
private Long recipientId;
|
||||
/** 标题 */
|
||||
@ApiModelProperty("标题")
|
||||
private String headline;
|
||||
/** 副标题 */
|
||||
@ApiModelProperty("副标题")
|
||||
private String subheading;
|
||||
/** 表ID */
|
||||
@ApiModelProperty("表ID")
|
||||
private Long tableId;
|
||||
/** 表名 */
|
||||
@ApiModelProperty("表名")
|
||||
private String tableName;
|
||||
/** 大类型(字典) */
|
||||
@ApiModelProperty("大类型(字典)")
|
||||
private String messageLargeType;
|
||||
/** 小类型(字典) */
|
||||
@ApiModelProperty("小类型(字典)")
|
||||
private String messageSmallType;
|
||||
/** 读状态(0未读 1已读) */
|
||||
@ApiModelProperty("读状态(0未读 1已读)")
|
||||
private String readStatus;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user