using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.YiDaSyncNC.Dtos.NC { [SugarTable("bd_supplier")] public class bd_supplier { public bd_supplier() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public string pk_supplier { get; set; } public string pk_org { get; set; } public string code { get; set; } public string name { get; set; } } }