using Admin.NET.Core.Util.LowCode.Dto;
using System;
namespace Admin.NET.Application
{
///
/// PDA菜单输出参数
///
public class WmsPdaPowerDto
{
///
/// 图标
///
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; }
}
}