- 新增.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
110 lines
2.9 KiB
Java
110 lines
2.9 KiB
Java
package com.gxwebsoft.credit.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.io.Serializable;
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* 行政许可
|
|
*
|
|
* @author 科技小王子
|
|
* @since 2026-01-07 13:52:13
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@Schema(name = "CreditAdministrativeLicense对象", description = "行政许可")
|
|
public class CreditAdministrativeLicense implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Schema(description = "ID")
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
|
|
@Schema(description = "决定文书/许可编号")
|
|
private String code;
|
|
|
|
@Schema(description = "决定文书/许可证名称")
|
|
private String name;
|
|
|
|
@Schema(description = "许可状态")
|
|
private String statusText;
|
|
|
|
@Schema(description = "许可类别")
|
|
private String type;
|
|
|
|
@Schema(description = "链接")
|
|
private String url;
|
|
|
|
@Schema(description = "有效期自")
|
|
private String validityStart;
|
|
|
|
@Schema(description = "有效期至")
|
|
private String validityEnd;
|
|
|
|
@Schema(description = "许可机关")
|
|
private String licensingAuthority;
|
|
|
|
@Schema(description = "许可内容")
|
|
@TableField("License_content")
|
|
private String licenseContent;
|
|
|
|
@Schema(description = "数据来源单位")
|
|
private String dataSourceUnit;
|
|
|
|
@Schema(description = "是否有数据")
|
|
private Boolean hasData;
|
|
|
|
@Schema(description = "数据状态")
|
|
private String dataStatus;
|
|
|
|
@Schema(description = "备注")
|
|
private String comments;
|
|
|
|
@Schema(description = "企业ID")
|
|
private Integer companyId;
|
|
|
|
@Schema(description = "主体企业")
|
|
@TableField(exist = false)
|
|
private String companyName;
|
|
|
|
@Schema(description = "是否推荐")
|
|
private Integer recommend;
|
|
|
|
@Schema(description = "排序(数字越小越靠前)")
|
|
private Integer sortNumber;
|
|
|
|
@Schema(description = "状态, 0正常, 1冻结")
|
|
private Integer status;
|
|
|
|
@Schema(description = "是否删除, 0否, 1是")
|
|
@TableLogic
|
|
private Integer deleted;
|
|
|
|
@Schema(description = "用户ID")
|
|
private Integer userId;
|
|
|
|
@Schema(description = "真实姓名")
|
|
@TableField(exist = false)
|
|
private String realName;
|
|
|
|
@Schema(description = "租户id")
|
|
private Integer tenantId;
|
|
|
|
@Schema(description = "创建时间")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private LocalDateTime createTime;
|
|
|
|
@Schema(description = "修改时间")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private LocalDateTime updateTime;
|
|
|
|
}
|