From 2b25f973bb6d72ce6971d6f9c3cdccf51b7962ab Mon Sep 17 00:00:00 2001 From: wangxinhui <wangxinhui@hnkhzn.com> Date: 星期六, 06 九月 2025 14:27:08 +0800 Subject: [PATCH] Merge branch 'master' of http://115.159.85.185:8098/r/ZhiHuiQiCe/LongDeLiLiKu --- 项目代码/WMS/WMSServices/WIDESEA_Model/Models/Outbound/Dt_OutBSTOrderDetail.cs | 96 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 96 insertions(+), 0 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_Model/Models/Outbound/Dt_OutBSTOrderDetail.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_Model/Models/Outbound/Dt_OutBSTOrderDetail.cs" new file mode 100644 index 0000000..4251cc5 --- /dev/null +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WMSServices/WIDESEA_Model/Models/Outbound/Dt_OutBSTOrderDetail.cs" @@ -0,0 +1,96 @@ +锘縰sing SqlSugar; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using WIDESEA_Core.Attributes; +using WIDESEA_Core.DB.Models; + +namespace WIDESEA_Model.Models +{ + /// <summary> + /// BST鍑哄簱鎺掔▼鏄庣粏 + /// </summary> + [SugarTable(nameof(Dt_OutBSTOrderDetail), "BST鍑哄簱鎺掔▼鏄庣粏"), ModelValidate] + public class Dt_OutBSTOrderDetail : BaseEntity + { + /// <summary> + /// 涓婚敭 + /// </summary> + [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "涓婚敭")] + public int Id { get; set; } + + /// <summary> + /// 鍑哄簱涓昏〃ID + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "鍑哄簱涓昏〃ID")] + public int OutBSTOrderId { get; set; } + + /// <summary> + /// 鍏宠仈鐨勪富琛↖D(涓婃父) + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "鍏宠仈鐨勪富琛↖D(涓婃父)")] + public int BoardMpsId { get; set; } + + /// <summary> + /// 骞呭 + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "骞呭")] + public decimal Width { get; set; } + + /// <summary> + /// 闇�姹傞暱搴� + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "闇�姹傞暱搴�")] + public decimal XqLen { get; set; } + + /// <summary> + /// 鎬荤敤閲� + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "鎬荤敤閲�")] + public decimal TotalUsage { get; set; } + + /// <summary> + /// 鐗╂枡鏉ユ簮ID(涓婃父) + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "鐗╂枡鏉ユ簮ID(涓婃父)")] + public int MaterialId { get; set; } + + /// <summary> + /// 鐗╂枡缂栧彿 + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "鐗╂枡缂栧彿")] + public string MaterialNo { get; set; } + + /// <summary> + /// 閲囪喘闀垮害 + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "閲囪喘闀垮害")] + public decimal ProcurementLength { get; set; } + + /// <summary> + /// 宸插垎閰嶇敤閲� + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "宸插垎閰嶇敤閲�")] + public decimal AssignTotalUsage { get; set; } + + /// <summary> + /// 宸插嚭鐢ㄩ噺 + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "宸插嚭鐢ㄩ噺")] + public decimal OutTotalUsage { get; set; } + + /// <summary> + /// 鐗╂枡鍚嶇О + /// </summary> + [SugarColumn(IsNullable = true, ColumnDescription = "鐗╂枡鍚嶇О")] + public string MaterialName { get; set; } + + /// <summary> + /// 鍑哄簱鍗曟槑缁嗙姸鎬� + /// </summary> + [SugarColumn(IsNullable = false, ColumnDescription = "鍑哄簱鍗曟槑缁嗙姸鎬�")] + public int OutBSTOrderDetailStatus { get; set; } + } +} -- Gitblit v1.9.3