package cn.com.goldenwater.dcproj.param; import java.io.Serializable; import java.util.Date; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiParam; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; /** * 反馈问题过程记录对象 gw_pblm_rect_record * * @author ruoyi * @date 2023-04-18 */ public class GwPblmRectRecordParam extends BaseBean implements Serializable { private static final long serialVersionUID = 1L; @ApiModelProperty("ID") private String id; @ApiModelProperty("问题反馈ID") private String pblmId; @ApiModelProperty("反馈内容") private String pblmRectNote; @ApiModelProperty("反馈单位") private String pblmRectDuty; @ApiModelProperty("反馈人姓名") private String pblmRectName; @JsonFormat(pattern = "yyyy-MM-dd") @ApiModelProperty("反馈时间") private Date pblmRectTm; @ApiParam( name = "pageNum", value = "页码", defaultValue = "1" ) private int pageNum = 1; @ApiParam( name = "pageSize", value = "每页记录数", defaultValue = "10" ) private int pageSize = 10; @ApiParam( name = "orderBy", value = "排序语句(例如:id desc, create_time desc)" ) private String orderBy; @ApiParam( name = "count", value = "是否查询总数(默认不)", defaultValue = "false" ) private boolean count = false; @ApiParam( name = "offset", value = "偏移量:上页最后一条记录标识" ) private String offset; public void setId(String id) { this.id = id; } public String getId() { return id; } public void setPblmId(String pblmId) { this.pblmId = pblmId; } public String getPblmId() { return pblmId; } public void setPblmRectNote(String pblmRectNote) { this.pblmRectNote = pblmRectNote; } public String getPblmRectNote() { return pblmRectNote; } public void setPblmRectDuty(String pblmRectDuty) { this.pblmRectDuty = pblmRectDuty; } public String getPblmRectDuty() { return pblmRectDuty; } public void setPblmRectName(String pblmRectName) { this.pblmRectName = pblmRectName; } public String getPblmRectName() { return pblmRectName; } public void setPblmRectTm(Date pblmRectTm) { this.pblmRectTm = pblmRectTm; } public Date getPblmRectTm() { return pblmRectTm; } public int getPageNum() { return pageNum; } public void setPageNum(int pageNum) { this.pageNum = pageNum; } public int getPageSize() { return pageSize; } public void setPageSize(int pageSize) { this.pageSize = pageSize; } public String getOrderBy() { return orderBy; } public void setOrderBy(String orderBy) { this.orderBy = orderBy; } public boolean isCount() { return count; } public void setCount(boolean count) { this.count = count; } public String getOffset() { return offset; } public void setOffset(String offset) { this.offset = offset; } @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) .append("id", getId()) .append("pblmId", getPblmId()) .append("pblmRectNote", getPblmRectNote()) .append("pblmRectDuty", getPblmRectDuty()) .append("pblmRectName", getPblmRectName()) .append("pblmRectTm", getPblmRectTm()) .toString(); } }