admin
2024-09-20 8b7b39172ee548ff303dbd73816cb7c1071f7887
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
using System.Collections.Generic;
 
namespace RiskControl.NewService.QiChaCha.QccEntity
{
    /// <summary>
    /// 著作权多重查询-请求参数
    /// </summary>
    public class CopyRightQuery
    {
        ///// <summary>
        ///// 作品著作权人(personName、productName、registeNo之间必须输入一个)
        ///// </summary>
        //public string personName { get; set; }
 
        //public string searchKey => personName;
 
        ///// <summary>
        ///// 作品名称(personName、productName、registeNo之间必须输入一个)
        ///// </summary>
        //public string productName { get; set; }
 
        ///// <summary>
        ///// 登记号(personName、productName、registeNo之间必须输入一个)
        ///// </summary>
        //public string registeNo { get; set; }
 
        public string searchKey { get; set; }
        /// <summary>
        /// 每页条数,默认10条,最大不超过50条
        /// </summary>
        public int pageSize { get; set; }
 
        /// <summary>
        /// 页码,默认第1页
        /// </summary>
        public int pageIndex { get; set; }
 
        /// <summary>
        /// 接口ApiKey
        /// </summary>
        public string key { get; set; }
    }
 
    /// <summary>
    /// 著作权多重查询-返回参数(Return)
    /// </summary>
    public class CopyRightReturnTotal : BaseResult<List<CopyRightReturn>>
    {
    }
 
    /// <summary>
    /// 著作权多重查询-返回参数(Return)
    /// </summary>
    public class CopyRightReturn
    {
        /// <summary>
        /// 作品著作权人
        /// </summary>
        public string Owner { get; set; }
 
        /// <summary>
        /// 类别
        /// </summary>
        public string Category { get; set; }
 
        /// <summary>
        /// 作品名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 登记号
        /// </summary>
        public string RegisterNo { get; set; }
 
        /// <summary>
        /// 登记日期
        /// </summary>
        public string RegisterDate { get; set; }
 
        /// <summary>
        /// 首次发布日期
        /// </summary>
        public string PublishDate { get; set; }
 
        /// <summary>
        /// 创作完成日期
        /// </summary>
        public string FinishDate { get; set; }
    }
}