/***********************************************************************
|
* Project: baifenBinfa
|
* ProjectName: 百分兵法管理系统
|
* Web: http://chuanyin.com
|
* Author:
|
* Email:
|
* CreateTime: 202403/02
|
* Description: 暂无
|
***********************************************************************/
|
|
using System.ComponentModel.DataAnnotations;
|
using SqlSugar;
|
|
namespace CoreCms.Net.Model.Entities
|
{
|
/// <summary>
|
/// 服务购买表
|
/// </summary>
|
public partial class CoreCmsUserServicesOrder
|
{
|
/// <summary>
|
/// 关联服务
|
/// </summary>
|
[Display(Name = "关联服务")]
|
[SugarColumn(IsIgnore = true)]
|
public CoreCmsServices service { get; set; }
|
|
|
/// <summary>
|
/// 状态说明
|
/// </summary>
|
[Display(Name = "状态说明")]
|
[SugarColumn(IsIgnore = true)]
|
public string statusStr { get; set; }
|
|
|
/// <summary>
|
/// 服务标题
|
/// </summary>
|
[Display(Name = "服务标题")]
|
[SugarColumn(IsIgnore = true)]
|
public string serviceTitle { get; set; }
|
|
|
/// <summary>
|
/// 用户昵称
|
/// </summary>
|
[Display(Name = "用户昵称")]
|
[SugarColumn(IsIgnore = true)]
|
public string userName { get; set; }
|
|
|
}
|
}
|