username@email.com
2021-08-27 7b9e068cfe4e295f9ee960457d848c631f0136c7
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DTO
{
    public class AdmAskJiaojieDTO
    {
        public string id { get; set; }
        public string Id { get; set; }
        public string CiZhiId { get; set; }
        public string Remark { 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 CreaterName { get; set; }
        public string Tittle { get; set; }
        public string Content { get; set; }
        public string Tongguojujue { get; set; }
        public string Step { get; set; }
 
        public string JiaojieDtlId { get; set; }
 
        public List<AdmAskJiaojieDtlDTO> admAskJiaojieDtlDTOs { get; set; }
 
        public DateTime? JiaojietimeStart { get; set; }
        public string JiaojietimeStartName { get; set; }
 
        public DateTime? JiaojietimeEnd { get; set; }
        public string JiaojietimeEndName { get; set; }
        public string JiaojieStatus { get; set; }
    }
}