/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* 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; }
}
}