username@email.com
2024-07-08 c6c6761506785691ef44e7e232c45e1b4b16f7fa
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DTO
{
    public class LiaotianDTO
    {
        public string Id { get; set; }
        public string Question { get; set; }
        public string Anwser { 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 Clientid { get; set; }
 
        public string Shiyongfatiao { get; set; }
 
        public string Questiontype { get; set; }
        public string Problemtype { get; set; }
        public string ChushuStatus { get; set; }
        public DateTime? Shenhetime { get; set; }
        public string Shenheer { get; set; }
 
        public string _Modifytimetxt; 
        public string Modifytimetxt
        {
            get
            {
 
                return Modifytime.ToString("yyyy-MM-dd");
            }
            set
            {
                _Modifytimetxt = value;
            }
        }
 
        public string _Createtimetxt { get; set; }
        public string Createtimetxt
        {
            get
            {
 
                return Createtime.ToString("yyyy-MM-dd");
            }
            set
            {
                _Createtimetxt = value;
            }
        }
 
        public string ShouCangStatus { get; set; }
    }
 
    public class LiaotianDTOSearch : SearchEntity
    {
        public string Question { get; set; }
 
        public string Problemtype { get; set; }
 
        public string Questiontype { get; set; }
 
        public string Info { get; set; }
 
        public string Createtime { get; set; }
        public string Creater { get; set; }
 
        public string Shifoushenhe { get; set; }
        public string ChushuStatus { get; set; }
 
        public string ShouCangStatus { get; set; }
 
        public string ShouCangCreater { get; set; }
    }
}