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; }
|
}
|
}
|