123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WMS.BZModels.Dto.PT.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; }
- }
- public class PinKuDto
- {
- 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; }
-
- /// <summary>
- /// default4
- /// </summary>
- public string Default4 { get; set; }
- /// <summary>
- /// default5
- /// </summary>
- public string Default5 { get; set; }
- /// <summary>
- /// default6
- /// </summary>
- public string Default6 { 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 PinKuQueryDto : PagerInfo
- {
- public string Code { get; set; }
- }
- public class InOutStationDto
- {
- public string WareHouseName { get; set; }
- public string StatusName { get; set; }
- public string PHStatusName { get; set; }
- public string Code { get; set; }
- public string Name { get; set; }
- }
- }
|