namespace DS.WMS.Core.System.Dtos;
public class SysDictionaryViewModel
{
public int? Dic_ID { get; set; }
///
///
///
public string DicName { get; set; }
///
///
///
public string DicNo { get; set; }
///
///
///
public byte Enable { get; set; }
///
///
///
public int? OrderNo { get; set; }
///
///
///
public int ParentId { get; set; } = 0;
///
///
///
public string Remark { get; set; }= "";
///
///
///
public DateTime? CreateDate { get; set; }
///
///
///
public DateTime? ModifyDate { get; set; }
}