notice-status-enum.ts 828 B

12345678910111213141516171819202122232425
  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. /**
  15. * 通知公告状态枚举<br />&nbsp;草稿 DRAFT = 0<br />&nbsp;发布 PUBLIC = 1<br />&nbsp;撤回 CANCEL = 2<br />&nbsp;删除 DELETED = 3<br />
  16. * @export
  17. * @enum {string}
  18. */
  19. export enum NoticeStatusEnum {
  20. DRAFT = 'DRAFT',
  21. PUBLIC = 'PUBLIC',
  22. CANCEL = 'CANCEL',
  23. DELETED = 'DELETED'
  24. }