Files
java-10584/src/main/java/com/gxwebsoft/bszx/param/BszxClassParam.java
赵忠林 a1a3d78dd6 feat(generator): 添加代码生成器模板和AI聊天功能
- 新增.gitignore文件配置忽略规则
- 添加Taro页面配置模板add.config.ts.btl
- 添加Taro页面组件模板add.tsx.btl用于动态表单生成
- 实现AiController提供AI聊天消息处理功能
- 集成WebSocket实现AI消息流式传输
- 添加支付宝支付配置工具类AlipayConfigUtil
- 创建支付宝参数实体AlipayParam
- 集成阿里云短信发送工具AliYunSender
- 添加阿里云机器翻译工具AliyunTranslateUtil
- 完善API响应结果包装类ApiResult
- 配置多环境应用参数application.yml
- 添加CMS生产环境配置application-cms.yml
- 添加开发环境配置application-dev.yml
- 添加生产环境配置application-prod.yml
2026-02-13 02:21:21 +08:00

65 lines
1.8 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-06 22:50:25
*/
@Data
@EqualsAndHashCode(callSuper = false)
@JsonInclude(JsonInclude.Include.NON_NULL)
@Schema(name = "BszxClassParam对象", description = "百色中学-班级查询参数")
public class BszxClassParam 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 eraId;
@Schema(description = "年级ID")
@QueryField(type = QueryType.EQ)
private Integer gradeId;
@Schema(description = "年级")
@QueryField(type = QueryType.EQ)
private String gradeName;
@Schema(description = "累计捐款金额")
@QueryField(type = QueryType.EQ)
private BigDecimal totalMoney;
@Schema(description = "班级")
private String name;
@Schema(description = "分部")
@QueryField(type = QueryType.EQ)
private Integer branch;
@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;
}