From b1161509ecc6f599b1c06c7f54ff3b27f0618178 Mon Sep 17 00:00:00 2001 From: pengmn <pmn@HanInfo> Date: 星期二, 01 七月 2025 17:33:04 +0800 Subject: [PATCH] 1 --- HH.WCS.Mobox3/HH.WCS.Mobox3.XiaoMi/models/LocFrameRel.cs | 35 +++++++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/HH.WCS.Mobox3/HH.WCS.Mobox3.XiaoMi/models/LocFrameRel.cs b/HH.WCS.Mobox3/HH.WCS.Mobox3.XiaoMi/models/LocFrameRel.cs new file mode 100644 index 0000000..0145ee8 --- /dev/null +++ b/HH.WCS.Mobox3/HH.WCS.Mobox3.XiaoMi/models/LocFrameRel.cs @@ -0,0 +1,35 @@ +using HH.WCS.XiaoMi.models; +using SqlSugar; +using System; +using System.Collections.Generic; + +namespace HH.WCS.XiaoMi +{ + //TN_Loc_Container + //LocCntrRel + [SugarTable("TN_Frame_Container")] + public class LocFrameRel : BaseModel + { + + + [SugarColumn(IsPrimaryKey = true)] + //货位 + public string S_LOC_CODE { get; set; } + //货架 + public string S_FRAME_CODE { get; set; } + //public string S_ACTION_SRC { get; set; } + //public string S_BINDING_METHOD { get; set; } + //public int N_BINDING_METHOD { get; set; } + //public string S_STATE_PRE { get; set; } + //public int N_REVIEW_RESULT { get; set; } + + //public int N_BIND_ORDER { get; set; } + + + [SugarColumn(IsIgnore = true)] + [Navigate(NavigateType.OneToMany, nameof(S_LOC_CODE))] + public List<LocCntrRel> LocCntrRels { get; set; } + + + } +} -- Gitblit v1.9.1