/*********************************************************************** * Project: CoreCms * ProjectName: 核心内容管理系统 * Web: https://www.corecms.net * Author: 大灰灰 * Email: jianweie@163.com * CreateTime: 2021/1/31 21:45:10 * Description: 暂无 ***********************************************************************/ using System.ComponentModel.DataAnnotations; using SqlSugar; namespace CoreCms.Net.Model.Entities { /// /// 服务购买表 /// public partial class CoreCmsUserServicesOrder { /// /// 关联服务 /// [Display(Name = "关联服务")] [SugarColumn(IsIgnore = true)] public CoreCmsServices service { get; set; } /// /// 状态说明 /// [Display(Name = "状态说明")] [SugarColumn(IsIgnore = true)] public string statusStr { get; set; } /// /// 服务标题 /// [Display(Name = "服务标题")] [SugarColumn(IsIgnore = true)] public string serviceTitle { get; set; } /// /// 用户昵称 /// [Display(Name = "用户昵称")] [SugarColumn(IsIgnore = true)] public string userName { get; set; } } }