update-notice-input.ts 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. *
  19. * @export
  20. * @interface UpdateNoticeInput
  21. */
  22. export interface UpdateNoticeInput {
  23. /**
  24. * 雪花Id
  25. *
  26. * @type {number}
  27. * @memberof UpdateNoticeInput
  28. */
  29. id?: number;
  30. /**
  31. * 创建时间
  32. *
  33. * @type {Date}
  34. * @memberof UpdateNoticeInput
  35. */
  36. createTime?: Date;
  37. /**
  38. * 更新时间
  39. *
  40. * @type {Date}
  41. * @memberof UpdateNoticeInput
  42. */
  43. updateTime?: Date | null;
  44. /**
  45. * 创建者Id
  46. *
  47. * @type {number}
  48. * @memberof UpdateNoticeInput
  49. */
  50. createUserId?: number | null;
  51. /**
  52. * 创建者姓名
  53. *
  54. * @type {string}
  55. * @memberof UpdateNoticeInput
  56. */
  57. createUserName?: string | null;
  58. /**
  59. * 修改者Id
  60. *
  61. * @type {number}
  62. * @memberof UpdateNoticeInput
  63. */
  64. updateUserId?: number | null;
  65. /**
  66. * 修改者姓名
  67. *
  68. * @type {string}
  69. * @memberof UpdateNoticeInput
  70. */
  71. updateUserName?: string | null;
  72. /**
  73. * 软删除
  74. *
  75. * @type {boolean}
  76. * @memberof UpdateNoticeInput
  77. */
  78. isDelete?: boolean;
  79. /**
  80. * 标题
  81. *
  82. * @type {string}
  83. * @memberof UpdateNoticeInput
  84. */
  85. title: string;
  86. /**
  87. * 内容
  88. *
  89. * @type {string}
  90. * @memberof UpdateNoticeInput
  91. */
  92. content: string;
  93. /**
  94. * @type {NoticeTypeEnum}
  95. * @memberof UpdateNoticeInput
  96. */
  97. type?: NoticeTypeEnum;
  98. /**
  99. * 发布人Id
  100. *
  101. * @type {number}
  102. * @memberof UpdateNoticeInput
  103. */
  104. publicUserId?: number;
  105. /**
  106. * 发布人姓名
  107. *
  108. * @type {string}
  109. * @memberof UpdateNoticeInput
  110. */
  111. publicUserName?: string | null;
  112. /**
  113. * 发布机构Id
  114. *
  115. * @type {number}
  116. * @memberof UpdateNoticeInput
  117. */
  118. publicOrgId?: number;
  119. /**
  120. * 发布机构名称
  121. *
  122. * @type {string}
  123. * @memberof UpdateNoticeInput
  124. */
  125. publicOrgName?: string | null;
  126. /**
  127. * 发布时间
  128. *
  129. * @type {Date}
  130. * @memberof UpdateNoticeInput
  131. */
  132. publicTime?: Date | null;
  133. /**
  134. * 撤回时间
  135. *
  136. * @type {Date}
  137. * @memberof UpdateNoticeInput
  138. */
  139. cancelTime?: Date | null;
  140. /**
  141. * @type {NoticeStatusEnum}
  142. * @memberof UpdateNoticeInput
  143. */
  144. status?: NoticeStatusEnum;
  145. }