| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using SiteCore.taobao;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SiteCore.taoObj
- {
- public class dataShopResponseVo : dataResponseVo
- {
- public dataShopResponseVo() { }
- public shopPageData data { get; set; }
- public class shopPageData
- {
- public shopPageData() { }
- public shopPage bizObjectPage { get; set; }
- }
- public class shopPage
- {
- public shopPage() { }
- public string totalPages { get; set; }
- public string totalElements { get; set; }
- public List<shopPageItem> content { get; set; }
- }
- public class shopPageItem
- {
- public shopPageItem() { }
- public string bizObjectId { get; set; }
- public string schemaCode { get; set; }
- public shopInfo data { get; set; }
- }
- public class shopInfo
- {
- public shopInfo() { }
- public string ErpShopId { get; set; }
- public string id { get; set; }
- public List<operationMan> operation { get; set; }
- }
- public class operationMan
- {
- public operationMan() { }
- public string id { get; set; }
- public string type { get; set; }
- }
- }
- }
|