| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- package com.lxq.system.biz.model;
- import com.baomidou.mybatisplus.annotation.*;
- import com.baomidou.mybatisplus.extension.activerecord.Model;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.io.Serial;
- import java.io.Serializable;
- import java.time.LocalDateTime;
- /**
- * 通道参数配置表(KxsInterfaceConfig)表实体类
- *
- * @author 系统
- * @since 2024-07-12 16:45:55
- */
- @EqualsAndHashCode(callSuper = true)
- @Data
- public class SysInterfaceConfig extends Model<SysInterfaceConfig> implements Serializable {
- @Serial
- private static final long serialVersionUID = 1L;
-
-
- /**
- * 主键ID
- */
- @Schema(description = "主键ID")
- @TableId(type = IdType.AUTO)
- private Integer id;
- /**
- * 新增时间
- */
- @TableField(fill = FieldFill.INSERT)
- @Schema(description = "新增时间")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private LocalDateTime createTime;
- /**
- * 更新时间
- */
- @TableField(fill = FieldFill.UPDATE)
- @Schema(description = "更新时间")
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private LocalDateTime updateTime;
- /**
- * 删除标记,0未删除,1已删除
- */
- @Schema(description = "删除标记,0未删除,1已删除")
- @TableLogic
- private String delFlag;
- /**
- * 版本
- */
- @Schema(description = "版本")
- private Integer version;
- /**
- * 添加人
- */
- @Schema(description = "添加人")
- @TableField(fill = FieldFill.INSERT)
- private String createBy;
- /**
- * 修改人
- */
- @Schema(description = "修改人")
- @TableField(fill = FieldFill.UPDATE)
- private String updateBy;
- /**
- * 备注
- */
- @Schema(description = "备注")
- private String remark;
- /**
- * 名称
- */
- @Schema(description = "名称")
- private String name;
- /**
- * 参数json格式
- */
- @Schema(description = "参数json格式")
- private String params;
- /**
- * 状态: 0-停用, 1-启用
- */
- @Schema(description = "状态: 0-停用, 1-启用")
- private Integer status;
- /**
- * 类型 0-代付平台 1-支付平台
- */
- @Schema(description = "类型 0-代付平台 1-支付平台")
- private Integer paramType;
- /**
- * 标识
- */
- @Schema(description = "标识")
- private String ifCode;
- }
|