using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SqlSugar;
namespace JiepeiWMS.Model.Models
{
///
///供应商类型中间表
///
[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;
}
///
/// 主键id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 供应商Id
///
public int WMSupplierId { get; set; }
///
/// 供应商分类Id
///
public int WMSupplierTypeId { get; set; }
///
/// 是否删除
///
public bool IsDeleted { get; set; }
///
/// 主体id
///
public int SysOrgId { get; set; }
}
}