username@email.com
2025-04-27 15eb82df2d6ec539e9d4245bfe08d531e8eb6379
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DTO
{
    public class ExpertTestTopicDTO
    {
        public string Id { get; set; }
        public string Topictype { get; set; }
        public string Zhishitype { get; set; }
        public string Topic { get; set; }
        public string Anwsers { get; set; }
        public string Area { get; set; }
        public string Zhongdian { get; set; }
        public string JiexiStatus { get; set; }
        public string ShenpiStatus { get; set; }
        public string RecStatus { get; set; }
        public string Creater { get; set; }
        public DateTime Createtime { get; set; }
        public string Modifier { get; set; }
        public DateTime Modifytime { get; set; }
        
        public string TopictypeName { get; set; }
        
        public string ZhishitypeName { get; set; }
       
        public string ZhongdianName { get; set; }
       
        public string JiexiStatusName { get; set; }
        
        public string ShenpiStatusName { get; set; }
 
        public string AreaName { get; set; }
 
        public List<ExpertTestTopicanwserDTO> expertTestTopicanwserDTOs { get; set; }
 
        public string[] anwserno { get; set; }
        public string[] Anwser { get; set; }
        public string[] Shifouzhengqu { get; set; }
 
 
        public List<ExpertTestTopicjiexiDTO> expertTestTopicjiexiDTOs { get; set; }
 
        public string Jiexi { get; set; }
 
        public string[] Falv { get; set; }
        public string[] Fatiao { get; set; }
 
        public string[] Flag { get; set; }
 
        public string[] Fatiaomingxi { get; set; }
 
        public decimal Shuliang { get; set; }
    }
 
 
    public class ExpertTestTopicDTOSearch : SearchEntity
    {
 
        public string Area { get; set; }
        
        public string Topictype { get; set; }
        public string Zhishitype { get; set; }
        public string Zhongdian { get; set; }
 
        public string JiexiStatus { get; set; }
 
        public string ShenpiStatus { get; set; }
 
        public string Topic { get; set; }
 
        public string TopicId { get; set; }
 
        public string Falv { get; set; }
 
        public string shanchuzhishitype { get; set; }
        
 
 
    }
}