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_branddoc")] public class bd_branddoc { public bd_branddoc() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public string code { get; set; } public string name { get; set; } } }