41 lines
922 B
C#
Raw Normal View History

2025-06-04 09:42:48 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Domain.Entities;
namespace Syc.Basic.Web.WMS.Entitys
{
/// <summary>
/// 数据字典
/// </summary>
[Table("DataDictionary")]
public class DataDictionary:Entity
{
[Key]
public string Code { get; set; }
public string Key { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public int Order { get; set; }
public bool Status { get; set; }
public DateTime Createtime { get; set; }
public List<DictionaryItems> DictionaryItems { get; set; }
public override object[] GetKeys()
{
return new object[] { Code };
}
}
}