irc-netcore-api/IRaCIS.Core.Test/LiquidTemplateOutPut/DictionaryViewModel.cs

77 lines
2.0 KiB
C#

//--------------------------------------------------------------------
// 此代码由liquid模板自动生成 byzhouhang 20240909
// 生成时间 2024-09-20 01:22:37Z
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
//--------------------------------------------------------------------
using System;
using IRaCIS.Core.Domain.Share;
using System.Collections.Generic;
namespace IRaCIS.Core.Application.ViewModel;
public class DictionaryView : DictionaryAddOrEdit
{
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
}
public class DictionaryAddOrEdit
{
public Guid? Id { get; set; }
public string ChildGroup { get; set; }
public string Code { get; set; }
public Guid? ConfigTypeId { get; set; }
public DicDataTypeEnum DataTypeEnum { get; set; }
public string Description { get; set; }
public bool IsConfig { get; set; }
public bool IsEnable { get; set; }
public Guid? ParentId { get; set; }
public int ShowOrder { get; set; }
public string Value { get; set; }
public string ValueCN { get; set; }
}
public class DictionaryQuery
{
public string? ChildGroup { get; set; }
public string? Code { get; set; }
public Guid? ConfigTypeId { get; set; }
public DicDataTypeEnum? DataTypeEnum { get; set; }
public string? Description { get; set; }
public bool? IsConfig { get; set; }
public bool? IsEnable { get; set; }
public Guid? ParentId { get; set; }
public int? ShowOrder { get; set; }
public string? Value { get; set; }
public string? ValueCN { get; set; }
}