using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("test_chinacity")] public partial class TestChinacity { public TestChinacity(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string CityName {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string? PinYin {get;set;} } }