服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-03-23 5ec2816b25ccc33855c48da7f7f9305e21e6dc38
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System;
using SqlSugar;
using System.Linq;
using System.ComponentModel;
using System.Collections.Generic;
using Tiger.Model.Minsun;
using Tiger.Model.Extensions;
using Microsoft.SqlServer.Server;
 
namespace Tiger.Model
{
    /// <summary>
    /// 实体:库存信息
    /// </summary>
    [Description("Primary:ID")]
    [Serializable]
    [SugarTable("V_WH_ITEM_SUM")]
    public class V_WH_ITEM_SUM : iTableHasAuth
    {
        #region 构造函数
        /// <summary>
        /// 实体:库存信息
        /// </summary>
        public V_WH_ITEM_SUM() {}
        #endregion
 
        #region 公共属性
 
        /// <summary>
        /// 物料编码
        /// </summary>
        public string ITEM_CODE { get; set; }
        /// <summary>
        /// 物料描述
        /// </summary>
        public string ITEM_NAME { get; set; }
        /// <summary>
        /// 仓库代码
        /// </summary>
        public string WH_CODE { get; set; }
        /// <summary>
        /// 储位代码
        /// </summary>
        public string LOCATION_CODE { get; set; }
        /// <summary>
        /// 数量
        /// </summary>
        public decimal QTY { get; set; }
 
        public string AUTH_ORG { get; set; }
        public string AUTH_PROD { get; set; }
        public string AUTH_WH { get; set; }
        #endregion
 
    }//endClass
}