using SqlSugar; namespace Waste.Domain { /// /// 菜单 /// public class W_Menu { /// /// 菜单 /// public W_Menu() { } private System.Guid _Id; /// /// /// [SugarColumn(IsPrimaryKey = true)] public System.Guid Id { get { return this._Id; } set { this._Id = value; } } private System.Guid _ParentId; /// /// 父ID /// public System.Guid ParentId { get { return this._ParentId; } set { this._ParentId = value; } } private System.String _Name; /// /// 名称 /// public System.String Name { get { return this._Name; } set { this._Name = value?.Trim(); } } private System.String _Icon; /// /// 图标 /// public System.String Icon { get { return this._Icon; } set { this._Icon = value?.Trim(); } } private System.String _UrlAddress; /// /// 链接 /// public System.String UrlAddress { get { return this._UrlAddress; } set { this._UrlAddress = value?.Trim(); } } private System.Int32 _SortCode; /// /// 排序 /// public System.Int32 SortCode { get { return this._SortCode; } set { this._SortCode = value; } } private System.Int32 _Status; /// /// 状态 /// public System.Int32 Status { get { return this._Status; } set { this._Status = value; } } private System.DateTime _CreateTime; /// /// 创建时间 /// public System.DateTime CreateTime { get { return this._CreateTime; } set { this._CreateTime = value; } } } }