/***********************************************************************
|
* Project: baifenBinfa
|
* ProjectName: 百分兵法管理系统
|
* Web: http://chuanyin.com
|
* Author:
|
* Email:
|
* CreateTime: 202403/02
|
* Description: 暂无
|
***********************************************************************/
|
|
using System.Collections.Generic;
|
using CoreCms.Net.Model.Entities;
|
|
namespace CoreCms.Net.Model.ViewModels.DTO
|
{
|
/// <summary>
|
/// OrderToAftersales返回类
|
/// </summary>
|
public class OrderToAfterSalesDto
|
{
|
public decimal refundMoney { get; set; } = 0;
|
|
public Dictionary<int, reshipGoods> reshipGoods { get; set; } = null;
|
|
public List<CoreCmsBillAftersales> billAftersales { get; set; } = new();
|
}
|
}
|