wangxinhui
2025-02-28 f947d43adfe6a204b6afe920ce88a30d78015f1d
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_External.Model
{
    /// <summary>
    /// 物料销售退货入库
    /// </summary>
    public class ERPMaterialSaleReturnModel
    {
        /// <summary>
        /// 类型
        /// </summary>
        public string Way { get; set; }
 
        /// <summary>
        /// 单号
        /// </summary>
        public string Code { get; set; }
 
    }
  
}