add-print-input.ts 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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 { StatusEnum } from './status-enum';
  15. import {
  16. StatusEnum,
  17. } from ".";
  18. /**
  19. *
  20. *
  21. * @export
  22. * @interface AddPrintInput
  23. */
  24. export interface AddPrintInput {
  25. /**
  26. * 雪花Id
  27. *
  28. * @type {number}
  29. * @memberof AddPrintInput
  30. */
  31. id?: number;
  32. /**
  33. * 创建时间
  34. *
  35. * @type {Date}
  36. * @memberof AddPrintInput
  37. */
  38. createTime?: Date | null;
  39. /**
  40. * 更新时间
  41. *
  42. * @type {Date}
  43. * @memberof AddPrintInput
  44. */
  45. updateTime?: Date | null;
  46. /**
  47. * 创建者Id
  48. *
  49. * @type {number}
  50. * @memberof AddPrintInput
  51. */
  52. createUserId?: number | null;
  53. /**
  54. * 创建者姓名
  55. *
  56. * @type {string}
  57. * @memberof AddPrintInput
  58. */
  59. createUserName?: string | null;
  60. /**
  61. * 修改者Id
  62. *
  63. * @type {number}
  64. * @memberof AddPrintInput
  65. */
  66. updateUserId?: number | null;
  67. /**
  68. * 修改者姓名
  69. *
  70. * @type {string}
  71. * @memberof AddPrintInput
  72. */
  73. updateUserName?: string | null;
  74. /**
  75. * 软删除
  76. *
  77. * @type {boolean}
  78. * @memberof AddPrintInput
  79. */
  80. isDelete?: boolean;
  81. /**
  82. * 租户Id
  83. *
  84. * @type {number}
  85. * @memberof AddPrintInput
  86. */
  87. tenantId?: number | null;
  88. /**
  89. * 打印模板
  90. *
  91. * @type {string}
  92. * @memberof AddPrintInput
  93. */
  94. template: string;
  95. /**
  96. * 排序
  97. *
  98. * @type {number}
  99. * @memberof AddPrintInput
  100. */
  101. orderNo?: number;
  102. /**
  103. * @type {StatusEnum}
  104. * @memberof AddPrintInput
  105. */
  106. status?: StatusEnum;
  107. /**
  108. * 备注
  109. *
  110. * @type {string}
  111. * @memberof AddPrintInput
  112. */
  113. remark?: string | null;
  114. /**
  115. * 名称
  116. *
  117. * @type {string}
  118. * @memberof AddPrintInput
  119. */
  120. name: string;
  121. }