| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /* tslint:disable */
- /* eslint-disable */
- /**
- * Admin.NET 通用权限开发平台
- * 让 .NET 开发更简单、更通用、更流行。前后端分离架构(.NET6/Vue3),开箱即用紧随前沿技术。<br/><a href='https://gitee.com/zuohuaijun/Admin.NET/'>https://gitee.com/zuohuaijun/Admin.NET</a>
- *
- * OpenAPI spec version: 1.0.0
- * Contact: 515096995@qq.com
- *
- * NOTE: This class is auto generated by the swagger code generator program.
- * https://github.com/swagger-api/swagger-codegen.git
- * Do not edit the class manually.
- */
- import { StatusEnum } from './status-enum';
- import {
- StatusEnum,
- } from ".";
- /**
- *
- *
- * @export
- * @interface AddPrintInput
- */
- export interface AddPrintInput {
- /**
- * 雪花Id
- *
- * @type {number}
- * @memberof AddPrintInput
- */
- id?: number;
- /**
- * 创建时间
- *
- * @type {Date}
- * @memberof AddPrintInput
- */
- createTime?: Date | null;
- /**
- * 更新时间
- *
- * @type {Date}
- * @memberof AddPrintInput
- */
- updateTime?: Date | null;
- /**
- * 创建者Id
- *
- * @type {number}
- * @memberof AddPrintInput
- */
- createUserId?: number | null;
- /**
- * 创建者姓名
- *
- * @type {string}
- * @memberof AddPrintInput
- */
- createUserName?: string | null;
- /**
- * 修改者Id
- *
- * @type {number}
- * @memberof AddPrintInput
- */
- updateUserId?: number | null;
- /**
- * 修改者姓名
- *
- * @type {string}
- * @memberof AddPrintInput
- */
- updateUserName?: string | null;
- /**
- * 软删除
- *
- * @type {boolean}
- * @memberof AddPrintInput
- */
- isDelete?: boolean;
- /**
- * 租户Id
- *
- * @type {number}
- * @memberof AddPrintInput
- */
- tenantId?: number | null;
- /**
- * 打印模板
- *
- * @type {string}
- * @memberof AddPrintInput
- */
- template: string;
- /**
- * 排序
- *
- * @type {number}
- * @memberof AddPrintInput
- */
- orderNo?: number;
- /**
- * @type {StatusEnum}
- * @memberof AddPrintInput
- */
- status?: StatusEnum;
- /**
- * 备注
- *
- * @type {string}
- * @memberof AddPrintInput
- */
- remark?: string | null;
- /**
- * 名称
- *
- * @type {string}
- * @memberof AddPrintInput
- */
- name: string;
- }
|