add-notice-input.ts 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * Admin.NET 通用权限开发平台
  5. * 让 .NET 开发更简单、更通用、更流行。整合最新技术,模块插件式开发,前后端分离,开箱即用。<br/><u><b><font color='FF0000'> 👮不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!</font></b></u>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. *
  9. *
  10. * NOTE: This class is auto generated by the swagger code generator program.
  11. * https://github.com/swagger-api/swagger-codegen.git
  12. * Do not edit the class manually.
  13. */
  14. import { NoticeStatusEnum } from './notice-status-enum';
  15. import { NoticeTypeEnum } from './notice-type-enum';
  16. /**
  17. *
  18. * @export
  19. * @interface AddNoticeInput
  20. */
  21. export interface AddNoticeInput {
  22. /**
  23. * 雪花Id
  24. * @type {number}
  25. * @memberof AddNoticeInput
  26. */
  27. id?: number;
  28. /**
  29. * 创建时间
  30. * @type {Date}
  31. * @memberof AddNoticeInput
  32. */
  33. createTime?: Date;
  34. /**
  35. * 更新时间
  36. * @type {Date}
  37. * @memberof AddNoticeInput
  38. */
  39. updateTime?: Date | null;
  40. /**
  41. * 创建者Id
  42. * @type {number}
  43. * @memberof AddNoticeInput
  44. */
  45. createUserId?: number | null;
  46. /**
  47. * 创建者姓名
  48. * @type {string}
  49. * @memberof AddNoticeInput
  50. */
  51. createUserName?: string | null;
  52. /**
  53. * 修改者Id
  54. * @type {number}
  55. * @memberof AddNoticeInput
  56. */
  57. updateUserId?: number | null;
  58. /**
  59. * 修改者姓名
  60. * @type {string}
  61. * @memberof AddNoticeInput
  62. */
  63. updateUserName?: string | null;
  64. /**
  65. * 软删除
  66. * @type {boolean}
  67. * @memberof AddNoticeInput
  68. */
  69. isDelete?: boolean;
  70. /**
  71. * 标题
  72. * @type {string}
  73. * @memberof AddNoticeInput
  74. */
  75. title: string;
  76. /**
  77. * 内容
  78. * @type {string}
  79. * @memberof AddNoticeInput
  80. */
  81. content: string;
  82. /**
  83. *
  84. * @type {NoticeTypeEnum}
  85. * @memberof AddNoticeInput
  86. */
  87. type?: NoticeTypeEnum;
  88. /**
  89. * 发布人Id
  90. * @type {number}
  91. * @memberof AddNoticeInput
  92. */
  93. publicUserId?: number;
  94. /**
  95. * 发布人姓名
  96. * @type {string}
  97. * @memberof AddNoticeInput
  98. */
  99. publicUserName?: string | null;
  100. /**
  101. * 发布机构Id
  102. * @type {number}
  103. * @memberof AddNoticeInput
  104. */
  105. publicOrgId?: number;
  106. /**
  107. * 发布机构名称
  108. * @type {string}
  109. * @memberof AddNoticeInput
  110. */
  111. publicOrgName?: string | null;
  112. /**
  113. * 发布时间
  114. * @type {Date}
  115. * @memberof AddNoticeInput
  116. */
  117. publicTime?: Date | null;
  118. /**
  119. * 撤回时间
  120. * @type {Date}
  121. * @memberof AddNoticeInput
  122. */
  123. cancelTime?: Date | null;
  124. /**
  125. *
  126. * @type {NoticeStatusEnum}
  127. * @memberof AddNoticeInput
  128. */
  129. status?: NoticeStatusEnum;
  130. }