This commit is contained in:
CortexCore 2024-05-11 20:32:19 +08:00
parent 1eadacf760
commit 81988597f3
9 changed files with 311 additions and 280 deletions

View File

@ -21,4 +21,27 @@
</Content> </Content>
</ItemGroup> </ItemGroup>
<ItemGroup>
<Compile Remove="Packages\Common~\**" />
<Compile Remove="Packages\Editor\**" />
<Compile Remove="Packages\Runtime\**" />
<Compile Remove="Packages\Core\Cache\**" />
<Compile Remove="Packages\Tests\**" />
<Compile Remove="Packages\Runtime~\Unity\**" />
<Compile Remove="Packages\Runtime~\UnityPluginsSupport\**" />
<Compile Remove="Src\Unity\**" />
<Compile Remove="Src\UnityPluginsSupport\**" />
<Compile Remove="Src\UnityEditor\**" />
</ItemGroup>
<ItemGroup>
<!-- 排除Unity文件 -->
<None Remove="**\*.meta"/>
<None Remove="**\*.asmdef"/>
<None Remove="Src\Unity\**" />
<None Remove="Src\UnityPluginsSupport\**" />
<None Remove="Src\UnityEditor\**" />
</ItemGroup>
</Project> </Project>

View File

@ -2,8 +2,8 @@
using IDIS.Model; using IDIS.Model;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace IDIS.YL106.Model; namespace IDIS.YL106.Model
{
/// <summary> /// <summary>
/// 数据-订单 /// 数据-订单
/// </summary> /// </summary>
@ -62,3 +62,4 @@ public record Data_Oder : IDIS_Model
[DisplayName("原材料标识")] [DisplayName("原材料标识")]
public string Materials { get; set; } = string.Empty; public string Materials { get; set; } = string.Empty;
} }
}

View File

@ -2,8 +2,8 @@
using IDIS.Model; using IDIS.Model;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace IDIS.YL106.Model; namespace IDIS.YL106.Model
{
/// <summary> /// <summary>
/// 实体,用于描述例如机器人、传送带等设备的信息 /// 实体,用于描述例如机器人、传送带等设备的信息
/// </summary> /// </summary>
@ -65,3 +65,4 @@ public record Object_Equipment : IDIS_Model
[JsonProperty("manufacture_date")] [JsonProperty("manufacture_date")]
public DateTime ManufactureDate { get; set; } =DateTime.MinValue; public DateTime ManufactureDate { get; set; } =DateTime.MinValue;
} }
}

View File

@ -2,8 +2,8 @@
using IDIS.Model; using IDIS.Model;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace IDIS.YL106.Model; namespace IDIS.YL106.Model
{
/// <summary> /// <summary>
/// 实体,用于描述物料的信息 /// 实体,用于描述物料的信息
/// </summary> /// </summary>
@ -30,3 +30,4 @@ public record Object_Material: IDIS_Model
[JsonProperty("manufacture_date")] [JsonProperty("manufacture_date")]
public string ManufactureDate { get; set; } = string.Empty; public string ManufactureDate { get; set; } = string.Empty;
} }
}

View File

@ -2,8 +2,8 @@
using IDIS.Model; using IDIS.Model;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace IDIS.YL106.Model; namespace IDIS.YL106.Model
{
/// <summary> /// <summary>
/// 实体,用于描述产品的信息 /// 实体,用于描述产品的信息
/// </summary> /// </summary>
@ -53,3 +53,4 @@ public record Object_Product:IDIS_Model
} }
}

View File

@ -1,7 +1,7 @@
using System.ComponentModel; using System.ComponentModel;
namespace IDIS.YL106.Model; namespace IDIS.YL106.Model
{
/// <summary> /// <summary>
/// 装配工序 /// 装配工序
/// </summary> /// </summary>
@ -15,3 +15,4 @@ public record Procedure_Assembly:Procedure_Base
} }
}

View File

@ -2,8 +2,8 @@ using System.ComponentModel;
using IDIS.Model; using IDIS.Model;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace IDIS.YL106.Model; namespace IDIS.YL106.Model
{
/// <summary> /// <summary>
/// 工序基类 /// 工序基类
/// </summary> /// </summary>
@ -53,3 +53,4 @@ public record Procedure_Base:IDIS_Model
[JsonProperty("order_handle")] [JsonProperty("order_handle")]
public string OderHandle { get; set; } = string.Empty; public string OderHandle { get; set; } = string.Empty;
} }
}

View File

@ -2,8 +2,8 @@ using System.ComponentModel;
using IDIS.Model; using IDIS.Model;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace IDIS.YL106.Model; namespace IDIS.YL106.Model
{
/// <summary> /// <summary>
/// 出库工序 /// 出库工序
/// </summary> /// </summary>
@ -30,3 +30,4 @@ public record Procedure_Transport:Procedure_Base
[JsonProperty("target_destination")] [JsonProperty("target_destination")]
public string TargetDestination { get; set; } = string.Empty; public string TargetDestination { get; set; } = string.Empty;
} }
}

View File

@ -2,8 +2,8 @@ using IDIS.Model;
using IDIS.Models; using IDIS.Models;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace IDIS.YL106.Model; namespace IDIS.YL106.Model
{
public class Program public class Program
{ {
public static void Main() public static void Main()
@ -45,3 +45,4 @@ public class Program
} }
} }
} }
}