/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
using System.Collections.Generic;
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
///
/// 退货单表
///
public partial class CoreCmsBillAftersales
{
///
/// 商品子集
///
[SugarColumn(IsIgnore = true)]
public List items { get; set; } = new List();
///
/// 图片子集
///
[SugarColumn(IsIgnore = true)]
public List images { get; set; } = new List();
///
/// 退款单
///
[SugarColumn(IsIgnore = true)]
public CoreCmsBillRefund billRefund { get; set; }
///
/// 退货单
///
[SugarColumn(IsIgnore = true)]
public CoreCmsBillReship billReship { get; set; }
///
/// 状态说明
///
[SugarColumn(IsIgnore = true)]
public string statusName { get; set; }
///
/// 用户昵称
///
[SugarColumn(IsIgnore = true)]
public string userNickName { get; set; }
///
/// 关联订单数据
///
[SugarColumn(IsIgnore = true)]
public CoreCmsOrder order { get; set; }
}
}