代码提交一版
This commit is contained in:
@@ -7,107 +7,122 @@ using System;
|
||||
using IRaCIS.Core.Domain.Share;
|
||||
using System.Collections.Generic;
|
||||
namespace IRaCIS.Core.Application.ViewModel
|
||||
{
|
||||
/// <summary> FrontAuditConfigView 列表视图模型 </summary>
|
||||
public class FrontAuditConfigView
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string Value { get; set; } = string.Empty;
|
||||
public string ValueCN { get; set; } = string.Empty;
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public DateTime CreateTime { get; set; }
|
||||
public Guid CreateUserId { get; set; }
|
||||
public DateTime UpdateTime { get; set; }
|
||||
public Guid UpdateUserId { get; set; }
|
||||
public string Code { get; set; } = string.Empty;
|
||||
public Guid? ParentId { get; set; }
|
||||
public bool? IsEnable { get; set; }
|
||||
public bool? IsConfig { get; set; }
|
||||
public string ModuleTypeId { get; set; } = string.Empty;
|
||||
public string OptTypeId { get; set; } = string.Empty;
|
||||
public string ChildrenTypeId { get; set; } = string.Empty;
|
||||
{
|
||||
/// <summary> FrontAuditConfigView 列表视图模型 </summary>
|
||||
public class FrontAuditConfigView
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string Value { get; set; } = string.Empty;
|
||||
public string ValueCN { get; set; } = string.Empty;
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public DateTime CreateTime { get; set; }
|
||||
public Guid CreateUserId { get; set; }
|
||||
public DateTime UpdateTime { get; set; }
|
||||
public Guid UpdateUserId { get; set; }
|
||||
public string Code { get; set; } = string.Empty;
|
||||
public Guid? ParentId { get; set; }
|
||||
public bool? IsEnable { get; set; }
|
||||
public bool? IsConfig { get; set; }
|
||||
public string ModuleTypeId { get; set; } = string.Empty;
|
||||
public string OptTypeId { get; set; } = string.Empty;
|
||||
public string ChildrenTypeId { get; set; } = string.Empty;
|
||||
|
||||
public string ConfigType { get; set; } = string.Empty;
|
||||
public string ConfigType { get; set; } = string.Empty;
|
||||
|
||||
public bool? IsShowParent { get; set; }
|
||||
|
||||
public string ChildrenTypeValue { get; set; } = string.Empty;
|
||||
public string ChildrenTypeValueCN { get; set; } = string.Empty;
|
||||
public bool? IsShowParent { get; set; }
|
||||
|
||||
public string ModuleTypeValue { get; set; } = string.Empty;
|
||||
public string ModuleTypeValueCN { get; set; } = string.Empty;
|
||||
public string ChildrenTypeValue { get; set; } = string.Empty;
|
||||
public string ChildrenTypeValueCN { get; set; } = string.Empty;
|
||||
|
||||
public string OptTypeValue { get; set; } = string.Empty;
|
||||
public string OptTypeValueCN { get; set; } = string.Empty;
|
||||
public string ModuleTypeValue { get; set; } = string.Empty;
|
||||
public string ModuleTypeValueCN { get; set; } = string.Empty;
|
||||
|
||||
public int? Sort { get; set; }
|
||||
public string OptTypeValue { get; set; } = string.Empty;
|
||||
public string OptTypeValueCN { get; set; } = string.Empty;
|
||||
|
||||
public string? EnumList { get; set; }
|
||||
public int? Sort { get; set; }
|
||||
|
||||
public string? DictionaryKey { get; set; }
|
||||
public string? EnumList { get; set; }
|
||||
|
||||
public string? EnumType { get; set; }
|
||||
public string? DictionaryKey { get; set; }
|
||||
|
||||
public string? EnumType { get; set; }
|
||||
|
||||
public string ObjectTypeId { get; set; } = string.Empty;
|
||||
|
||||
public bool? IsShowByTrialConfig { get; set; }
|
||||
|
||||
public string ByTrialConfig { get; set; } = string.Empty;
|
||||
|
||||
|
||||
}
|
||||
|
||||
///<summary>FrontAuditConfigQuery 列表查询参数模型</summary>
|
||||
public class FrontAuditConfigQuery
|
||||
{
|
||||
///<summary> Value</summary>
|
||||
public string Value { get; set; }=string.Empty;
|
||||
}
|
||||
|
||||
///<summary> ValueCN</summary>
|
||||
public string ValueCN { get; set; } = string.Empty;
|
||||
///<summary>FrontAuditConfigQuery 列表查询参数模型</summary>
|
||||
public class FrontAuditConfigQuery
|
||||
{
|
||||
///<summary> Value</summary>
|
||||
public string Value { get; set; } = string.Empty;
|
||||
|
||||
///<summary> Description</summary>
|
||||
public string Description { get; set; } = string.Empty;
|
||||
///<summary> ValueCN</summary>
|
||||
public string ValueCN { get; set; } = string.Empty;
|
||||
|
||||
///<summary> Code</summary>
|
||||
public string Code { get; set; } = string.Empty;
|
||||
///<summary> Description</summary>
|
||||
public string Description { get; set; } = string.Empty;
|
||||
|
||||
///<summary> OptTypeId </summary>
|
||||
public string OptTypeId { get; set; } = string.Empty;
|
||||
///<summary> Code</summary>
|
||||
public string Code { get; set; } = string.Empty;
|
||||
|
||||
///<summary> ChildrenTypeId</summary>
|
||||
public string ChildrenTypeId { get; set; } = string.Empty;
|
||||
///<summary> OptTypeId </summary>
|
||||
public string OptTypeId { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
///<summary> ChildrenTypeId</summary>
|
||||
public string ChildrenTypeId { get; set; } = string.Empty;
|
||||
|
||||
///<summary> FrontAuditConfigAddOrEdit 列表查询参数模型</summary>
|
||||
public class FrontAuditConfigAddOrEdit
|
||||
{
|
||||
public Guid? Id { get; set; }
|
||||
public string Value { get; set; } = string.Empty;
|
||||
public string ValueCN { get; set; } = string.Empty;
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public DateTime CreateTime { get; set; }
|
||||
public Guid CreateUserId { get; set; }
|
||||
public DateTime UpdateTime { get; set; }
|
||||
public Guid UpdateUserId { get; set; }
|
||||
public string Code { get; set; } = string.Empty;
|
||||
public Guid? ParentId { get; set; }
|
||||
public bool IsEnable { get; set; }
|
||||
public bool IsConfig { get; set; }
|
||||
public string ModuleTypeId { get; set; } = string.Empty;
|
||||
public string OptTypeId { get; set; } = string.Empty;
|
||||
public string ChildrenTypeId { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public string ConfigType { get; set; } = string.Empty;
|
||||
///<summary> FrontAuditConfigAddOrEdit 列表查询参数模型</summary>
|
||||
public class FrontAuditConfigAddOrEdit
|
||||
{
|
||||
public Guid? Id { get; set; }
|
||||
public string Value { get; set; } = string.Empty;
|
||||
public string ValueCN { get; set; } = string.Empty;
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public DateTime CreateTime { get; set; }
|
||||
public Guid CreateUserId { get; set; }
|
||||
public DateTime UpdateTime { get; set; }
|
||||
public Guid UpdateUserId { get; set; }
|
||||
public string Code { get; set; } = string.Empty;
|
||||
public Guid? ParentId { get; set; }
|
||||
public bool IsEnable { get; set; }
|
||||
public bool IsConfig { get; set; }
|
||||
public string ModuleTypeId { get; set; } = string.Empty;
|
||||
public string OptTypeId { get; set; } = string.Empty;
|
||||
public string ChildrenTypeId { get; set; } = string.Empty;
|
||||
|
||||
public bool? IsShowParent { get; set; }
|
||||
public string ConfigType { get; set; } = string.Empty;
|
||||
|
||||
public int? Sort { get; set; }
|
||||
public bool? IsShowParent { get; set; }
|
||||
|
||||
public string EnumList { get; set; } = string.Empty;
|
||||
public int? Sort { get; set; }
|
||||
|
||||
public string DictionaryKey { get; set; } = string.Empty;
|
||||
public string EnumList { get; set; } = string.Empty;
|
||||
|
||||
public string EnumType { get; set; } = string.Empty;
|
||||
public string DictionaryKey { get; set; } = string.Empty;
|
||||
|
||||
public string EnumType { get; set; } = string.Empty;
|
||||
|
||||
public string ObjectTypeId { get; set; } = string.Empty;
|
||||
|
||||
public bool? IsShowByTrialConfig { get; set; }
|
||||
|
||||
public string ByTrialConfig { get; set; } = string.Empty;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user