12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- 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; }
- }
- }
|