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
41
42
43
44
45
46
47
48
49
50
51
52
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SqlSugar;
 
 
namespace JiepeiWMS.Model.Models
{
    ///<summary>
    ///供应商类型中间表
    ///</summary>
    [SugarTable("WMSupplier_Type", "Jiepei_WMS")]
    public class WMSupplier_Type
    {
        public WMSupplier_Type()
        {
        }
        public WMSupplier_Type(int WSId, int WSTId)
        {
            WMSupplierId = WSId;
            WMSupplierTypeId = WSTId;
            IsDeleted = false;
        }
 
        /// <summary>
        /// 主键id
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int Id { get; set; }
 
        /// <summary>
        /// 供应商Id
        /// </summary>
        public int WMSupplierId { get; set; }
 
        /// <summary>
        /// 供应商分类Id
        /// </summary>
        public int WMSupplierTypeId { get; set; }
 
        /// <summary>
        /// 是否删除
        /// </summary>
        public bool IsDeleted { get; set; }
 
        /// <summary>
        /// 主体id
        /// </summary>
        public int SysOrgId { get; set; }
    }
}