| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- /* 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 { NoticeStatusEnum } from './notice-status-enum';
- import { NoticeTypeEnum } from './notice-type-enum';
- import {
- NoticeStatusEnum,NoticeTypeEnum,
- } from ".";
- /**
- *
- *
- * @export
- * @interface AddNoticeInput
- */
- export interface AddNoticeInput {
- /**
- * 雪花Id
- *
- * @type {number}
- * @memberof AddNoticeInput
- */
- id?: number;
- /**
- * 创建时间
- *
- * @type {Date}
- * @memberof AddNoticeInput
- */
- createTime?: Date | null;
- /**
- * 更新时间
- *
- * @type {Date}
- * @memberof AddNoticeInput
- */
- updateTime?: Date | null;
- /**
- * 创建者Id
- *
- * @type {number}
- * @memberof AddNoticeInput
- */
- createUserId?: number | null;
- /**
- * 创建者姓名
- *
- * @type {string}
- * @memberof AddNoticeInput
- */
- createUserName?: string | null;
- /**
- * 修改者Id
- *
- * @type {number}
- * @memberof AddNoticeInput
- */
- updateUserId?: number | null;
- /**
- * 修改者姓名
- *
- * @type {string}
- * @memberof AddNoticeInput
- */
- updateUserName?: string | null;
- /**
- * 软删除
- *
- * @type {boolean}
- * @memberof AddNoticeInput
- */
- isDelete?: boolean;
- /**
- * 标题
- *
- * @type {string}
- * @memberof AddNoticeInput
- */
- title: string;
- /**
- * 内容
- *
- * @type {string}
- * @memberof AddNoticeInput
- */
- content: string;
- /**
- * @type {NoticeTypeEnum}
- * @memberof AddNoticeInput
- */
- type?: NoticeTypeEnum;
- /**
- * 发布人Id
- *
- * @type {number}
- * @memberof AddNoticeInput
- */
- publicUserId?: number;
- /**
- * 发布人姓名
- *
- * @type {string}
- * @memberof AddNoticeInput
- */
- publicUserName?: string | null;
- /**
- * 发布机构Id
- *
- * @type {number}
- * @memberof AddNoticeInput
- */
- publicOrgId?: number;
- /**
- * 发布机构名称
- *
- * @type {string}
- * @memberof AddNoticeInput
- */
- publicOrgName?: string | null;
- /**
- * 发布时间
- *
- * @type {Date}
- * @memberof AddNoticeInput
- */
- publicTime?: Date | null;
- /**
- * 撤回时间
- *
- * @type {Date}
- * @memberof AddNoticeInput
- */
- cancelTime?: Date | null;
- /**
- * @type {NoticeStatusEnum}
- * @memberof AddNoticeInput
- */
- status?: NoticeStatusEnum;
- }
|