123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using SqlSugar;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WMS.BZModels.Dto.FJ.WareHouseDtos
- {
- public class WareHouseDto
- {
- public int IsStop { get; set; }
- public string Code { get; set; }
- public string Name { get; set; }
- public int TypeNum { get; set; }
- public long ConfigId { 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 WareHouseQueryDto : PagerInfo
- {
- public int IsStop { get; set; }
- public string Code { get; set; }
- public string Name { get; set; }
- public int TypeNum { get; set; }
- public long ConfigId { 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; }
- }
- }
|