SmsTemplateEntity.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. package jnpf.base.entity;
  2. import jnpf.base.entity.SuperEntity;
  3. import com.baomidou.mybatisplus.annotation.FieldFill;
  4. import com.baomidou.mybatisplus.annotation.TableField;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import io.swagger.v3.oas.annotations.media.Schema;
  8. import lombok.Data;
  9. import java.io.Serializable;
  10. import java.util.Date;
  11. /**
  12. * 短息模板表
  13. *
  14. * @author JNPF开发平台组
  15. * @version V3.1.0
  16. * @copyright 引迈信息技术有限公司
  17. * @date 2021年12月8日17:40:37
  18. */
  19. //@TableName("base_sms_template")
  20. @Data
  21. public class SmsTemplateEntity extends SuperEntity<String> implements Serializable {
  22. /**
  23. * 短信提供商
  24. */
  25. @TableField(value = "F_COMPANY")
  26. private Integer company;
  27. /**
  28. * 应用编号
  29. */
  30. @TableField(value = "F_APPID")
  31. private String appId;
  32. /**
  33. * 签名内容
  34. */
  35. @TableField(value = "F_SIGNCONTENT")
  36. private String signContent;
  37. /**
  38. * 模板编号
  39. */
  40. @TableField(value = "F_TEMPLATEID")
  41. private String templateId;
  42. /**
  43. * 模板名称
  44. */
  45. @TableField(value = "F_FULLNAME")
  46. private String fullName;
  47. /**
  48. * 模板参数JSON
  49. */
  50. @TableField(value = "F_TEMPLATEJSON")
  51. private String templateJson;
  52. /**
  53. * 有效标志
  54. */
  55. @TableField("F_ENABLEDMARK")
  56. private Integer enabledMark;
  57. /**
  58. * 编码
  59. */
  60. @TableField("F_ENCODE")
  61. private String enCode;
  62. /**
  63. * endpoint
  64. */
  65. @TableField("F_ENDPOINT")
  66. private String endpoint;
  67. /**
  68. * 地域参数
  69. */
  70. @TableField("F_REGION")
  71. private String region;
  72. }