From a9bba690fdead98f549d000ec29aa0cd6887cd22 Mon Sep 17 00:00:00 2001
From: wangxinhui <wangxinhui@hnkhzn.com>
Date: 星期二, 28 四月 2026 14:25:38 +0800
Subject: [PATCH] Merge branch 'master' of http://115.159.85.185:8098/r/KuKa/BeiJingBeiQiAGV
---
项目代码/WIDESEA_WCSServer/WIDESEAWCS_Model/Models/BasicInfo/Dt_MaterialInfo.cs | 86 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 86 insertions(+), 0 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WIDESEA_WCSServer/WIDESEAWCS_Model/Models/BasicInfo/Dt_MaterialInfo.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WIDESEA_WCSServer/WIDESEAWCS_Model/Models/BasicInfo/Dt_MaterialInfo.cs"
new file mode 100644
index 0000000..211ab60
--- /dev/null
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WIDESEA_WCSServer/WIDESEAWCS_Model/Models/BasicInfo/Dt_MaterialInfo.cs"
@@ -0,0 +1,86 @@
+锘縰sing SqlSugar;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using WIDESEAWCS_Core.DB.Models;
+
+namespace WIDESEAWCS_Model.Models
+{
+ [SugarTable(nameof(Dt_MaterialInfo), "鐗╂枡淇℃伅缁勭洏琛�")]
+ public class Dt_MaterialInfo : BaseEntity
+ {
+ /// <summary>
+ /// 涓婚敭
+ /// </summary>
+ [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")]
+ public int Id { get; set; }
+
+ /// <summary>
+ /// 鐗╂枡鍚嶇О 闆朵欢鍙�
+ /// </summary>
+ [SugarColumn(Length = 100, ColumnDescription = "鐗╂枡鍚嶇О")]
+ public string MaterialName { get; set; }
+
+ /// <summary>
+ /// 瀹瑰櫒缂栧彿
+ /// </summary>
+ [SugarColumn(Length = 100, ColumnDescription = "瀹瑰櫒缂栧彿")]
+ public string ContainerCode { get; set; }
+
+ /// <summary>
+ /// 瀹瑰櫒褰撳墠瀵瑰簲浣嶇疆
+ /// </summary>
+ [SugarColumn(Length = 100, ColumnDescription = "瀹瑰櫒褰撳墠瀵瑰簲浣嶇疆")]
+ public string Position { get; set; }
+
+ /// <summary>
+ /// 瀹瑰櫒鍑哄満浣嶇疆
+ /// </summary>
+ [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "瀹瑰櫒鍑哄満浣嶇疆")]
+ public string EndPosition { get; set; }
+
+ /// <summary>
+ /// 鏄惁鏂板澧炲鍣�
+ /// </summary>
+ [SugarColumn(ColumnDescription = "鏄惁灞炰簬鏂板瀹瑰櫒", DefaultValue = "0")]
+ public bool IsNew { get; set; }
+
+ /// <summary>
+ /// 瀹瑰櫒鏄惁缁戝畾
+ /// </summary>
+ [SugarColumn(ColumnDescription = "瀹瑰櫒鏄惁缁戝畾", DefaultValue = "1")]
+ public bool IsBind { get; set; } = true;
+
+ /// <summary>
+ /// 杞﹀瀷
+ /// </summary>
+ [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "杞﹀瀷")]
+ public string Carmodel { get; set; }
+
+ /// <summary>
+ /// 鍖哄煙
+ /// </summary>
+ [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "鍖哄煙")]
+ public string Region { get; set; }
+
+ /// <summary>
+ /// 澶囩敤瀛楁1
+ /// </summary>
+ [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "澶囩敤瀛楁1")]
+ public string? location_bak_1 { get; set; }
+
+ /// <summary>
+ /// 澶囩敤瀛楁2
+ /// </summary>
+ [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "澶囩敤瀛楁2")]
+ public string? location_bak_2 { get; set; }
+
+ /// <summary>
+ /// 澶囩敤瀛楁3
+ /// </summary>
+ [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "澶囩敤瀛楁3")]
+ public string? location_bak_3 { get; set; }
+ }
+}
--
Gitblit v1.9.3