SysInterfaceConfig.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package com.lxq.system.biz.model;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import com.baomidou.mybatisplus.extension.activerecord.Model;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import io.swagger.v3.oas.annotations.media.Schema;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. import java.io.Serial;
  9. import java.io.Serializable;
  10. import java.time.LocalDateTime;
  11. /**
  12. * 通道参数配置表(KxsInterfaceConfig)表实体类
  13. *
  14. * @author 系统
  15. * @since 2024-07-12 16:45:55
  16. */
  17. @EqualsAndHashCode(callSuper = true)
  18. @Data
  19. public class SysInterfaceConfig extends Model<SysInterfaceConfig> implements Serializable {
  20. @Serial
  21. private static final long serialVersionUID = 1L;
  22. /**
  23. * 主键ID
  24. */
  25. @Schema(description = "主键ID")
  26. @TableId(type = IdType.AUTO)
  27. private Integer id;
  28. /**
  29. * 新增时间
  30. */
  31. @TableField(fill = FieldFill.INSERT)
  32. @Schema(description = "新增时间")
  33. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  34. private LocalDateTime createTime;
  35. /**
  36. * 更新时间
  37. */
  38. @TableField(fill = FieldFill.UPDATE)
  39. @Schema(description = "更新时间")
  40. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  41. private LocalDateTime updateTime;
  42. /**
  43. * 删除标记,0未删除,1已删除
  44. */
  45. @Schema(description = "删除标记,0未删除,1已删除")
  46. @TableLogic
  47. private String delFlag;
  48. /**
  49. * 版本
  50. */
  51. @Schema(description = "版本")
  52. private Integer version;
  53. /**
  54. * 添加人
  55. */
  56. @Schema(description = "添加人")
  57. @TableField(fill = FieldFill.INSERT)
  58. private String createBy;
  59. /**
  60. * 修改人
  61. */
  62. @Schema(description = "修改人")
  63. @TableField(fill = FieldFill.UPDATE)
  64. private String updateBy;
  65. /**
  66. * 备注
  67. */
  68. @Schema(description = "备注")
  69. private String remark;
  70. /**
  71. * 名称
  72. */
  73. @Schema(description = "名称")
  74. private String name;
  75. /**
  76. * 参数json格式
  77. */
  78. @Schema(description = "参数json格式")
  79. private String params;
  80. /**
  81. * 状态: 0-停用, 1-启用
  82. */
  83. @Schema(description = "状态: 0-停用, 1-启用")
  84. private Integer status;
  85. /**
  86. * 类型 0-代付平台 1-支付平台
  87. */
  88. @Schema(description = "类型 0-代付平台 1-支付平台")
  89. private Integer paramType;
  90. /**
  91. * 标识
  92. */
  93. @Schema(description = "标识")
  94. private String ifCode;
  95. }