username@email.com
2021-11-30 8878b4d2c65329d454688d306e9d692c760bffe5
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DTO
{
   public class TChallengeletterDTO
    {
        public string Id { get; set; }
        public int? PrintNum { get; set; }
        public string OrderId { get; set; }
        public string GysId { get; set; }
        public string GysName { get; set; }
        public string GysAddress { get; set; }
        public string GysPostcode { get; set; }
        public string GysContacts { get; set; }
        public string GysPhone { get; set; }
        public string SqdbId { get; set; }
        public string SqdbName { get; set; }
        public string SqdbPhone { get; set; }
        public string SqdbAddress { get; set; }
        public string SqdbPostcode { get; set; }
        public string XmId { get; set; }
        public string XmName { get; set; }
        public string XmCode { get; set; }
        public string XmPackage { get; set; }
        public string PurchaserName { get; set; }
        public DateTime? DocumentsDate { get; set; }
        public string RequestInfo { get; set; }
        public bool? IsReply { get; set; }
        public string Respondent { get; set; }
        public DateTime? RespondDate { get; set; }
        public string RespondInfo { get; set; }
        public DateTime? Createtime { get; set; }
        public string Creater { get; set; }
        public DateTime? Modifytime { get; set; }
        public string Modifier { get; set; }
        public int? Status { get; set; }
        public List<TChallengeItemDTO> challengeItemDTOs { get; set; }
    }
}