//--------------------------------------------------------------------
// 此代码由T4模板自动生成 byzhouhang 20210918
// 生成时间 2022-03-03 15:28:20
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
//--------------------------------------------------------------------
using System;
using System.Collections.Generic;
namespace IRaCIS.Core.Application.ViewModel
{
/// SystemAnonymizationView 列表视图模型
public class SystemAnonymizationView: SystemAnonymizationAddOrEdit
{
public Guid CreateUserId { get; set; }
public DateTime UpdateTime { get; set; }
public Guid UpdateUserId { get; set; }
public DateTime CreateTime { get; set; }
}
///SystemAnonymizationQuery 列表查询参数模型
public class SystemAnonymizationQuery:PageInput
{
public string Group { get; set; } = string.Empty;
public bool? IsAdd { get; set; }
public string Element { get; set; } = string.Empty;
public string TagDescription { get; set; } = string.Empty;
public string TagDescriptionCN { get; set; } = string.Empty;
public string ValueRepresentation { get; set; } = string.Empty;
}
/// SystemAnonymizationAddOrEdit 列表查询参数模型
public class SystemAnonymizationAddOrEdit
{
public Guid? Id { get; set; }
public string Group { get; set; } = String.Empty;
public string Element { get; set; } = String.Empty;
public string TagDescription { get; set; } = String.Empty;
public string TagDescriptionCN { get; set; } = String.Empty;
public string ReplaceValue { get; set; } = String.Empty;
public string ValueRepresentation { get; set; } = String.Empty;
public bool IsAdd { get; set; }
public bool IsEnable { get; set; }
public bool IsFixed { get; set; }
}
}