zhaojs
2023-09-15 fc13938ff90213060532d99a600dea4a84456885
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
44
45
46
47
48
49
50
using Operater.DbModel;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
 
namespace Operater.DTO.System
{
    public class GetProductListRequest : PageBiz
    {
        /// <summary>
        /// 关键词
        /// </summary>
        public string KeyWords { get; set; }
 
        /// <summary>
        /// 选品规划id
        /// </summary>
        public string RuleId { get; set; }
 
        public long CategoryId { get; set; }
    }
 
    public class GetProductDetailRequest
    {
        [Required(ErrorMessage = "OfferIds不能为空")]
        public List<string> OfferIds { get; set; }
    }
 
    public class GetCategoryListRequest
    {
        [Required(ErrorMessage = "CateId不能为空")]
        public long CateId { get; set; }
    }
 
    public class GetCategoryListResponse
    {
        public long parentid { get; set; }
 
        public List<Category> list { get; set; }
    }
 
    public class GetCategoryListItem
    {
        public long id { get; set; }
 
        public string name { get; set; }
    }
 
}