using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.BZModels.Dto.FJ.SysConDtos { public class SysConDto { public string Code { get; set; } public string Name { get; set; } public string SContent { get; set; } public string SType { get; set; } public string Default1 { get; set; } public string Default2 { get; set; } public string Default3 { get; set; } public string Id { get; set; } public string Memo { get; set; } public string AddWho { get; set; } public string EditWho { get; set; } public DateTime AddTime { get; set; } public DateTime EditTime { get; set; } } public class SysConQueryDto : PagerInfo { public string Code { get; set; } public string Name { get; set; } } public class TunnelDto { public string WareHouseName { get; set; } public string Tunnel { get; set; } public string Statu { get; set; } public string StatuName { get; set; } public string Code { get; set; } public string Name { get; set; } public string SContent { get; set; } public string SType { get; set; } public string Default1 { get; set; } public string Default2 { get; set; } public string Default3 { get; set; } public string Id { get; set; } public string Memo { get; set; } public string AddWho { get; set; } public string EditWho { get; set; } public DateTime AddTime { get; set; } public DateTime EditTime { get; set; } } public class TunnelQueryDto : PagerInfo { public string Tunnel { get; set; } } public class OutInPationDto { public string WareHouseName { get; set; } public string Statu { get; set; } public string StatuName { get; set; } public string Code { get; set; } public string Name { get; set; } public string SContent { get; set; } public string SType { get; set; } public string Default1 { get; set; } public string Default2 { get; set; } public string Default3 { get; set; } public string Id { get; set; } public string Memo { get; set; } public string AddWho { get; set; } public string EditWho { get; set; } public DateTime AddTime { get; set; } public DateTime EditTime { get; set; } } public class OutInPationQueryDto : PagerInfo { public string Pation { get; set; } } }