namespace BPA.MES.Base.Application.Services { /// /// 名 称 : /// 创 建 人 :yangxiao /// 创建时间 : 2023/8/7 9:59:47 /// 描 述 : /// public class AgvLineDto { /// /// 自定义编码 /// public string Code { get; set; } /// /// 线路名称 /// public string Name { get; set; } /// /// 开始点位 /// public string StartPointId { get; set; } /// /// 结束点位 /// public string EndPointId { get; set; } /// /// 描述 /// public string Description { get; set; } } /// /// 增加 /// public class AgvLineAddInput : AgvLineDto { } /// /// 修改 /// public class AgvLineUpdateInput : AgvLineDto { /// /// 主键 /// public string Id { get; set; } } /// /// 刪除 /// public class AgvLineDelInput { /// /// 主键 /// public string Id { get; set; } } /// /// 普通查询条件 /// public class AgvLineQueryInput { /// /// 主键 /// public string Id { get; set; } } /// /// 分页查询条件 /// public class AgvLineQueryPageInput : RequestPage { /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } } /// /// 输出 /// public class AgvLineOutput : AgvLineDto { /// /// 主键 /// public string Id { get; set; } //下面增加多的数据 } }