WYB
2021-03-22 91b8cdad021ab052e4991f3d41834a6f0ddc36b8
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
using System;
using System.Linq;
using System.Text;
using SqlSugar;
 
 
namespace JiepeiWMS.Model.Models
{
    ///<summary>
    ///商品单位表
    ///</summary>
    [SugarTable("WMProductUnit", "Jiepei_WMS")]
    public class WMProductUnit
    {
        public WMProductUnit()
        {
        }
 
        /// <summary>
        /// 商品单位表主键id
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int Id { get; set; }
 
        /// <summary>
        /// 单位
        /// </summary>
        public string Unit { get; set; }
 
        /// <summary>
        /// 主体id
        /// </summary>
        public int SysOrgId { get; set; }
 
        /// <summary>
        /// 单位编码
        /// </summary>
        public string UnitCode { get; set; }
    }
}