PayApplication.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. package com.zanxiang.mybatis.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableLogic;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import lombok.AllArgsConstructor;
  7. import lombok.Data;
  8. import lombok.NoArgsConstructor;
  9. import java.io.Serializable;
  10. import java.util.Date;
  11. /**
  12. * 游戏应用表
  13. *
  14. * @author xufeng
  15. * @date 2022-06-20 15:16
  16. */
  17. @Data
  18. @NoArgsConstructor
  19. @AllArgsConstructor
  20. @TableName("t_pay_application")
  21. public class PayApplication implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. @TableId(value = "id", type = IdType.AUTO)
  24. private Long id;
  25. /**
  26. * 应用名称
  27. */
  28. private String name;
  29. /**
  30. * 类型 1 微信小程序
  31. */
  32. private Integer type;
  33. /**
  34. * 应用AppSecret
  35. */
  36. private String appSecret;
  37. /**
  38. * 版本
  39. */
  40. private String version;
  41. /**
  42. * 应用描述
  43. */
  44. private String appDesc;
  45. /**
  46. * 应用地址
  47. */
  48. private String appUrl;
  49. /**
  50. * 应用头像
  51. */
  52. private String appLogo;
  53. /**
  54. * 小程序码
  55. */
  56. private String miniCode;
  57. /**
  58. * 应用appid
  59. */
  60. private String appId;
  61. /**
  62. * 应用原始id
  63. */
  64. private String primevalId;
  65. /**
  66. * 应用主体
  67. */
  68. private String company;
  69. /**
  70. * 登录账号
  71. */
  72. private String loginName;
  73. /**
  74. * 登录密码
  75. */
  76. private String loginPassword;
  77. /**
  78. * 管理员
  79. */
  80. private String managePerson;
  81. /**
  82. * 备注
  83. */
  84. private String remark;
  85. /**
  86. * 1 删除 0 正常
  87. */
  88. @TableLogic
  89. private Integer isDelete;
  90. /**
  91. * 状态 1 不可用 0 正常
  92. */
  93. private Integer status;
  94. /**
  95. * 创建时间
  96. */
  97. private Date createTime;
  98. /**
  99. * 更新时间
  100. */
  101. private Date updateTime;
  102. }