移动系统liao
2024-12-11 c573732636815e569d24aacff11a82f93602585a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/***********************************************************************
 *            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();
    }
}