using SqlSugar; using System; using System.Linq; using System.Text; namespace OpenAuth.Repository.Domain { /// ///停车场信息 /// [SugarTable("mi_parking")] public partial class MiParking { public MiParking(){ } /// /// Desc:主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string Id {get;set;} /// /// Desc:停车场编号 /// Default: /// Nullable:True /// public string Num {get;set;} /// /// Desc:停车场名称 /// Default: /// Nullable:True /// public string Name {get;set;} /// /// Desc:负责人姓名 /// Default: /// Nullable:True /// public string Manager {get;set;} /// /// Desc:联系电话 /// Default: /// Nullable:True /// public string Phone {get;set;} /// /// Desc:地址 /// Default: /// Nullable:True /// public string Address {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} } }