heyuntao
2023-05-04 fbd6a11a99051f425640bf352842f4a0ecaa7a4d
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
36
37
38
39
40
41
42
43
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace YouZanSDKStandard.Api.Domain
{
    public class ItemSkuOpenModel
    {
 
        public string item_id { get; set; }
 
        public string sku_id { get; set; }
 
        public string sku_unique_code { get; set; }
 
        public string properties_name_json { get; set; }
 
        public string one_item_multi_code { get; set; }
 
        public string with_hold_quantity { get; set; }
 
        public string price { get; set; }
 
        public string outer_id { get; set; }
 
        public string created { get; set; }
 
        public string modified { get; set; }
 
        public string quantity { get; set; }
 
        public string item_no { get; set; }
 
        public string sold_num { get; set; }
 
        public string cost_price { get; set; }
 
    }
 
   
 
}