bug处理
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// 机械臂主表
|
||||
/// </summary>
|
||||
[SugarTable("wms_mechanicalArm_d")]
|
||||
public partial class WmsMechanicalArmD : BaseEntity<string>
|
||||
{
|
||||
public WmsMechanicalArmD()
|
||||
{
|
||||
id = SnowflakeIdHelper.NextId();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// 机械臂主表
|
||||
/// </summary>
|
||||
[SugarTable("wms_mechanicalArm_h")]
|
||||
public partial class WmsMechanicalArmH : BaseEntity<string>
|
||||
{
|
||||
public WmsMechanicalArmH()
|
||||
{
|
||||
id = SnowflakeIdHelper.NextId();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user