using Admin.NET.Core.Util.LowCode.Dto; using System; namespace Admin.NET.Application { /// /// PDA菜单输出参数 /// public class WmsPdaPowerOutput { /// /// 图标 /// public string Icon { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 颜色 /// public string Clolor { get; set; } /// /// 所属车间 /// public Admin.NET.Core.LesWorkShopType WorkShopType { get; set; } /// /// Id主键 /// public long Id { get; set; } /// /// 签核状态 /// public Admin.NET.Core.IssueState IssueState { get; set; } /// /// 是否选择 /// public bool IsCheck { get; set; } } /// /// /// public class wmsPdaPowerMenuOutput { /// /// /// public string WorkShopName { get; set; } /// /// /// public List WmsPdaPowerOutput { get; set; } } }