|
|
@@ -0,0 +1,129 @@
|
|
|
+package com.kxs.system.api.model;
|
|
|
+
|
|
|
+import java.io.Serial;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 通道参数配置表(KxsInterfaceConfig)表实体类
|
|
|
+ *
|
|
|
+ * @author 系统
|
|
|
+ * @since 2024-07-12 16:45:55
|
|
|
+ */
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Data
|
|
|
+public class KxsInterfaceConfig extends Model<KxsInterfaceConfig> 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 = "新增时间")
|
|
|
+ private LocalDateTime createTime;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新时间
|
|
|
+ */
|
|
|
+ @TableField(fill = FieldFill.UPDATE)
|
|
|
+ @Schema(description = "更新时间")
|
|
|
+ private LocalDateTime updateTime;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除标记,0未删除,1已删除
|
|
|
+ */
|
|
|
+ @Schema(description = "删除标记,0未删除,1已删除")
|
|
|
+ private String delFlag;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 版本
|
|
|
+ */
|
|
|
+ @Schema(description = "版本")
|
|
|
+ private Integer version;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 添加人
|
|
|
+ */
|
|
|
+ @Schema(description = "添加人")
|
|
|
+ private String createBy;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改人
|
|
|
+ */
|
|
|
+ @Schema(description = "修改人")
|
|
|
+ private String updateBy;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ @Schema(description = "备注")
|
|
|
+ private String remark;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 参数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 url;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 回调地址
|
|
|
+ */
|
|
|
+ @Schema(description = "回调地址")
|
|
|
+ private String callbackUrl;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|
|
|
+
|