add-notice-input.ts 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. /**
  4. * Admin.NET 通用权限开发平台
  5. * 让 .NET 开发更简单、更通用、更流行。前后端分离架构(.NET6/Vue3),开箱即用紧随前沿技术。<br/><a href='https://gitee.com/zuohuaijun/Admin.NET/'>https://gitee.com/zuohuaijun/Admin.NET</a>
  6. *
  7. * OpenAPI spec version: 1.0.0
  8. * Contact: 515096995@qq.com
  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. import {
  17. NoticeStatusEnum,NoticeTypeEnum,
  18. } from ".";
  19. /**
  20. *
  21. *
  22. * @export
  23. * @interface AddNoticeInput
  24. */
  25. export interface AddNoticeInput {
  26. /**
  27. * 雪花Id
  28. *
  29. * @type {number}
  30. * @memberof AddNoticeInput
  31. */
  32. id?: number;
  33. /**
  34. * 创建时间
  35. *
  36. * @type {Date}
  37. * @memberof AddNoticeInput
  38. */
  39. createTime?: Date | null;
  40. /**
  41. * 更新时间
  42. *
  43. * @type {Date}
  44. * @memberof AddNoticeInput
  45. */
  46. updateTime?: Date | null;
  47. /**
  48. * 创建者Id
  49. *
  50. * @type {number}
  51. * @memberof AddNoticeInput
  52. */
  53. createUserId?: number | null;
  54. /**
  55. * 创建者姓名
  56. *
  57. * @type {string}
  58. * @memberof AddNoticeInput
  59. */
  60. createUserName?: string | null;
  61. /**
  62. * 修改者Id
  63. *
  64. * @type {number}
  65. * @memberof AddNoticeInput
  66. */
  67. updateUserId?: number | null;
  68. /**
  69. * 修改者姓名
  70. *
  71. * @type {string}
  72. * @memberof AddNoticeInput
  73. */
  74. updateUserName?: string | null;
  75. /**
  76. * 软删除
  77. *
  78. * @type {boolean}
  79. * @memberof AddNoticeInput
  80. */
  81. isDelete?: boolean;
  82. /**
  83. * 标题
  84. *
  85. * @type {string}
  86. * @memberof AddNoticeInput
  87. */
  88. title: string;
  89. /**
  90. * 内容
  91. *
  92. * @type {string}
  93. * @memberof AddNoticeInput
  94. */
  95. content: string;
  96. /**
  97. * @type {NoticeTypeEnum}
  98. * @memberof AddNoticeInput
  99. */
  100. type?: NoticeTypeEnum;
  101. /**
  102. * 发布人Id
  103. *
  104. * @type {number}
  105. * @memberof AddNoticeInput
  106. */
  107. publicUserId?: number;
  108. /**
  109. * 发布人姓名
  110. *
  111. * @type {string}
  112. * @memberof AddNoticeInput
  113. */
  114. publicUserName?: string | null;
  115. /**
  116. * 发布机构Id
  117. *
  118. * @type {number}
  119. * @memberof AddNoticeInput
  120. */
  121. publicOrgId?: number;
  122. /**
  123. * 发布机构名称
  124. *
  125. * @type {string}
  126. * @memberof AddNoticeInput
  127. */
  128. publicOrgName?: string | null;
  129. /**
  130. * 发布时间
  131. *
  132. * @type {Date}
  133. * @memberof AddNoticeInput
  134. */
  135. publicTime?: Date | null;
  136. /**
  137. * 撤回时间
  138. *
  139. * @type {Date}
  140. * @memberof AddNoticeInput
  141. */
  142. cancelTime?: Date | null;
  143. /**
  144. * @type {NoticeStatusEnum}
  145. * @memberof AddNoticeInput
  146. */
  147. status?: NoticeStatusEnum;
  148. }