andon相关接口

This commit is contained in:
2023-10-07 17:28:47 +08:00
parent bd86072173
commit 861be92ec4
4 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class AndonCascaderOptionsOuput
{
public string label { get; set; }
public string value { get; set; }
public bool disabled { get; set; } = false;
public List<AndonCascaderOptionsOuput> children { get; set; } = new List<AndonCascaderOptionsOuput>();
}
}