1
pulg
2025-05-15 8c20b276c784beff4eb4e9b643c2310efbbf6a12
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
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.SJML.Dto
{
    public class SupplierMainDto
    {
        /// <summary>
        /// 供应商编号
        /// </summary>
        public string S_SUPPLIER_NO { get; set; }
 
        /// <summary>
        /// 供应商类型
        /// </summary>
        public string S_SUPPLIER_TYPE { get; set; }
 
        /// <summary>
        /// 供应商等级
        /// </summary>
        public string S_SUPPLIER_LEVEL { get; set; }
 
        /// <summary>
        ///  供应商全称
        /// </summary>
        public string S_SUPPLIER { get; set; }
 
        public int pagenumber { get; set; } = 1;
 
        public int pageSize { get; set; } = 10;
    }
}