using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.MES.Base.Application.Services { public class GodownDto { /// /// 料仓名称 /// public string Name { get; set; } /// /// 料仓编码 /// public string Code { get; set; } } /// /// 增加 /// public class GodownAddInput : GodownDto { } /// /// 更新 /// public class GodownUpdateInput : GodownDto { /// /// 主键 /// public string Id { get; set; } } /// /// 删除 /// public class GodownDelInput { /// /// 主键 /// public string Id { get; set; } } /// /// 不分页 /// public class GodownQueryInput { } /// /// 分页 /// public class GodownQueryPageInput : RequestPage { /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } } /// /// 输出 /// public class GodownOutput : GodownDto { /// /// 主键 /// public string Id { get; set; } } }