1
zrg
2024-10-15 a1e3e548ea03ceb32d07bf9f73f4719dd14f7f2e
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
92
93
94
95
using System;
using System.Collections.Generic;
using Top.Api.Util;
using Top.Api;
using Top.Api.DingTalk;
 
namespace DingTalk.Api.Request
{
    /// <summary>
    /// TOP API: dingtalk.oapi.edu.homework.student.report.submit
    /// </summary>
    public class OapiEduHomeworkStudentReportSubmitRequest : BaseDingTalkRequest<DingTalk.Api.Response.OapiEduHomeworkStudentReportSubmitResponse>
    {
        /// <summary>
        /// 扩展属性
        /// </summary>
        public string Attributes { get; set; }
 
        /// <summary>
        /// 业务编码
        /// </summary>
        public string BizCode { get; set; }
 
        /// <summary>
        /// 部门ID
        /// </summary>
        public Nullable<long> ClassId { get; set; }
 
        /// <summary>
        /// 作业ID
        /// </summary>
        public Nullable<long> HwId { get; set; }
 
        /// <summary>
        /// 作业报告
        /// </summary>
        public string HwReport { get; set; }
 
        /// <summary>
        /// 作业结果
        /// </summary>
        public string HwResult { get; set; }
 
        /// <summary>
        /// 学生ID
        /// </summary>
        public string StudentId { get; set; }
 
        /// <summary>
        /// 学生姓名
        /// </summary>
        public string StudentName { get; set; }
 
        #region IDingTalkRequest Members
 
        public override string GetApiName()
        {
            return "dingtalk.oapi.edu.homework.student.report.submit";
        }
 
        public override string GetApiCallType()
        {
            return DingTalkConstants.CALL_TYPE_OAPI;
        }
 
        public override IDictionary<string, string> GetParameters()
        {
            TopDictionary parameters = new TopDictionary();
            parameters.Add("attributes", this.Attributes);
            parameters.Add("biz_code", this.BizCode);
            parameters.Add("class_id", this.ClassId);
            parameters.Add("hw_id", this.HwId);
            parameters.Add("hw_report", this.HwReport);
            parameters.Add("hw_result", this.HwResult);
            parameters.Add("student_id", this.StudentId);
            parameters.Add("student_name", this.StudentName);
            if (this.otherParams != null)
            {
                parameters.AddAll(this.otherParams);
            }
            return parameters;
        }
 
        public override void Validate()
        {
            RequestValidator.ValidateRequired("biz_code", this.BizCode);
            RequestValidator.ValidateRequired("class_id", this.ClassId);
            RequestValidator.ValidateRequired("hw_id", this.HwId);
            RequestValidator.ValidateRequired("student_id", this.StudentId);
            RequestValidator.ValidateRequired("student_name", this.StudentName);
        }
 
        #endregion
    }
}