76 lines
2.7 KiB
C#
76 lines
2.7 KiB
C#
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2022-04-25 09:46:34
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
//--------------------------------------------------------------------
|
|
using System;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System.Collections.Generic;
|
|
namespace IRaCIS.Core.Application.ViewModel
|
|
{
|
|
/// <summary> SystemNoticeView 列表视图模型 </summary>
|
|
public class SystemNoticeView
|
|
{
|
|
public Guid Id { get; set; }
|
|
public int NoticeLevelEnum { get; set; }
|
|
public string NoticeContent { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public Guid CreateUserId { get; set; }
|
|
public DateTime UpdateTime { get; set; }
|
|
public Guid UpdateUserId { get; set; }
|
|
public int ApplicableProjectEnum { get; set; }
|
|
public int NoticeMode { get; set; }
|
|
public int NoticeStateEnum { get; set; }
|
|
public DateTime? StartDate { get; set; }
|
|
public DateTime? EndDate { get; set; }
|
|
public string FileName { get; set; }
|
|
public string Path { get; set; }
|
|
}
|
|
|
|
///<summary>SystemNoticeQuery 列表查询参数模型</summary>
|
|
public class SystemNoticeQuery
|
|
{
|
|
///<summary> NoticeContent</summary>
|
|
public string NoticeContent { get; set; }
|
|
|
|
///<summary> FileName</summary>
|
|
public string FileName { get; set; }
|
|
|
|
///<summary> Path</summary>
|
|
public string Path { get; set; }
|
|
|
|
}
|
|
|
|
///<summary> SystemNoticeAddOrEdit 列表查询参数模型</summary>
|
|
public class SystemNoticeAddOrEdit
|
|
{
|
|
public Guid Id { get; set; }
|
|
public int NoticeLevelEnum { get; set; }
|
|
public string NoticeContent { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public Guid CreateUserId { get; set; }
|
|
public DateTime UpdateTime { get; set; }
|
|
public Guid UpdateUserId { get; set; }
|
|
public int ApplicableProjectEnum { get; set; }
|
|
public int NoticeMode { get; set; }
|
|
public int NoticeStateEnum { get; set; }
|
|
public DateTime? StartDate { get; set; }
|
|
public DateTime? EndDate { get; set; }
|
|
public string FileName { get; set; }
|
|
public string Path { get; set; }
|
|
}
|
|
|
|
public class SystemNoticeUserTypeView
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid SystemNoticeId { get; set; }
|
|
public DateTime CreateTime { get; set; }
|
|
public Guid CreateUserId { get; set; }
|
|
public Guid UserTypeId { get; set; }
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|