This commit is contained in:
alex
2023-06-27 09:47:06 +08:00
parent 534d27e5f0
commit fbfd0c54d8
19 changed files with 31 additions and 25 deletions

View File

@@ -1,6 +1,7 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
using SqlSugar.DbConvert;
namespace Tnb.WarehouseMgr.Entities;
@@ -42,7 +43,8 @@ public partial class WmsCarryH : BaseEntity<string>
/// <summary>
/// 载具状态
/// </summary>
public string carry_status { get; set; }
[SugarColumn(ColumnDataType = "varchar(32)",SqlParameterDbType =typeof(EnumToStringConvert))]
public int carry_status { get; set; }
/// <summary>
/// 载具分类ID

View File

@@ -13,5 +13,5 @@ public partial class WmsDistaskH
/// 载具状态
/// </summary>
[SugarColumn(IsIgnore = true)]
public string carry_status { get; set; }
public int carry_status { get; set; }
}