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: 暂无
| ***********************************************************************/
|
| namespace CoreCms.Net.Model.ViewModels.DTO
| {
| /// <summary>
| /// </summary>
| public class reshipGoods
| {
| /// <summary>
| /// 售后商品数量,包含申请中和审核通过的
| /// </summary>
| public int reshipNums { get; set; } = 0;
|
| /// <summary>
| /// 已发货的商品进行退货的数量
| /// </summary>
| public int reshipedNums { get; set; } = 0;
| }
| }
|
|