物料增加信息 工艺路线弹窗增加过滤

This commit is contained in:
2023-05-08 17:42:07 +08:00
parent c9e0e2691b
commit b4ad3d26e2
8 changed files with 177 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
namespace Tnb.BasicData.Entities.Dto
{
public class VaildRouteOutput
{
public string id { get; set; }
public string code { get; set; }
public string name { get; set; }
public DateTime? start_time { get; set; }
public DateTime? end_time { get; set; }
}
}