DictionaryDataExportModel.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. package jnpf.base.model.dictionarydata;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. /**
  6. * 数据字典数据模板
  7. *
  8. * @author JNPF开发平台组
  9. * @version V3.1.0
  10. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  11. * @date 2021-06-11
  12. */
  13. @Data
  14. public class DictionaryDataExportModel implements Serializable {
  15. /**
  16. * 主键
  17. */
  18. private String id;
  19. /**
  20. * 上级
  21. */
  22. private String parentId;
  23. /**
  24. * 名称
  25. */
  26. private String fullName;
  27. /**
  28. * 编码
  29. */
  30. private String enCode;
  31. /**
  32. * 拼音
  33. */
  34. private String simpleSpelling;
  35. /**
  36. * 默认
  37. */
  38. private Integer isDefault;
  39. /**
  40. * 描述
  41. */
  42. private String description;
  43. /**
  44. * 排序码
  45. */
  46. private Long sortCode;
  47. /**
  48. * 有效标志
  49. */
  50. private Integer enabledMark;
  51. /**
  52. * 创建时间
  53. */
  54. private Date creatorTime;
  55. /**
  56. * 创建用户
  57. */
  58. private String creatorUserId;
  59. /**
  60. * 修改时间
  61. */
  62. private Date lastModifyTime;
  63. /**
  64. * 修改用户
  65. */
  66. private String lastModifyUserId;
  67. /**
  68. * 删除标志
  69. */
  70. private Integer deleteMark;
  71. /**
  72. * 删除时间
  73. */
  74. private Date deleteTime;
  75. /**
  76. * 删除用户
  77. */
  78. private String deleteUserId;
  79. /**
  80. * 类别主键
  81. */
  82. private String dictionaryTypeId;
  83. }