update-notice-input.ts 2.6 KB

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