58 lines
1.7 KiB
Java
58 lines
1.7 KiB
Java
package com.gxwebsoft.bszx.param;
|
||
|
||
import java.math.BigDecimal;
|
||
import com.gxwebsoft.common.core.annotation.QueryField;
|
||
import com.gxwebsoft.common.core.annotation.QueryType;
|
||
import com.gxwebsoft.common.core.web.BaseParam;
|
||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||
import io.swagger.v3.oas.annotations.media.Schema;
|
||
import io.swagger.v3.oas.annotations.media.Schema;
|
||
import lombok.Data;
|
||
import lombok.EqualsAndHashCode;
|
||
|
||
/**
|
||
* 百色中学-捐款排行查询参数
|
||
*
|
||
* @author 科技小王子
|
||
* @since 2025-03-25 08:54:09
|
||
*/
|
||
@Data
|
||
@EqualsAndHashCode(callSuper = false)
|
||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||
@Schema(name = "BszxPayRankingParam对象", description = "百色中学-捐款排行查询参数")
|
||
public class BszxPayRankingParam extends BaseParam {
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
@Schema(description = "ID")
|
||
@QueryField(type = QueryType.EQ)
|
||
private Integer id;
|
||
|
||
@Schema(description = "来源表ID(项目名称)")
|
||
@QueryField(type = QueryType.EQ)
|
||
private Integer formId;
|
||
|
||
@Schema(description = "数量")
|
||
@QueryField(type = QueryType.EQ)
|
||
private Integer number;
|
||
|
||
@Schema(description = "获得捐款总金额")
|
||
@QueryField(type = QueryType.EQ)
|
||
private BigDecimal totalPrice;
|
||
|
||
@Schema(description = "排序(数字越小越靠前)")
|
||
@QueryField(type = QueryType.EQ)
|
||
private Integer sortNumber;
|
||
|
||
@Schema(description = "备注")
|
||
private String comments;
|
||
|
||
@Schema(description = "状态, 0正常, 1冻结")
|
||
@QueryField(type = QueryType.EQ)
|
||
private Integer status;
|
||
|
||
@Schema(description = "是否删除, 0否, 1是")
|
||
@QueryField(type = QueryType.EQ)
|
||
private Integer deleted;
|
||
|
||
}
|