31 lines
692 B
C#
31 lines
692 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
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>
|
|
public class DictionaryItems:Entity<int>
|
|
{
|
|
public string DictionaryCode { get; set; }
|
|
|
|
public string Key { get; set; }
|
|
|
|
public string Value { get; set; }
|
|
|
|
public string SubValue { get; set; }
|
|
|
|
public bool Status { get; set; }
|
|
|
|
public DateTime Createtime { get; set; }
|
|
|
|
public DataDictionary Dictionary { get; set; }
|
|
}
|
|
}
|