工序工位存入bas_process_station

This commit is contained in:
2023-04-28 14:38:14 +08:00
parent 0a2bb034cf
commit e16fc6ac4a
9 changed files with 512 additions and 147 deletions

View File

@@ -0,0 +1,15 @@
namespace Tnb.BasicData.Entities.Dto
{
public class ProcessStationInput
{
/// <summary>
/// 工序id
/// </summary>
public string process_id { get; set; }
/// <summary>
/// 工位id集合
/// </summary>
public List<string> stationIds { get; set; }
}
}