AGSSbackend/AGSS/Models/Entities/DictionaryModel.cs

19 lines
571 B
C#

using System;
using System.Collections.Generic;
namespace AGSS.Models.Entities
{
public class DictionaryModel
{
public string Uuid { get; set; }
public string ParentId { get; set; }
public string ParentValue { get; set; }
public string Label { get; set; }
public string LabelEn { get; set; }
public string Remark { get; set; }
public string Value { get; set; }
public string Tag { get; set; }
public DateTime CreateTime { get; set; }
public string CreateUserId { get; set; }
}
}