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
using System;
using System.Collections.Generic;
 
#nullable disable
 
namespace zhengcaioa.Models
{
    public partial class CooperOrder
    {
        public string Id { get; set; }
        public DateTime XdTime { get; set; }
        public string Khdw { get; set; }
        public string OrderNo { get; set; }
        public string OrderType { get; set; }
        public string OrderPro { get; set; }
        public decimal? OrderNum { get; set; }
        public decimal? Price { get; set; }
        public decimal? Money { get; set; }
        public string Shr { get; set; }
        public string ShrAddress { get; set; }
        public string ShrTel { get; set; }
        public string Remark { 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 ShouliStatus { get; set; }
        public string Shoulier { get; set; }
        public DateTime? Shoulitime { get; set; }
        public string ChedanStatus { get; set; }
        public string Chedaner { get; set; }
        public DateTime? Chedantime { get; set; }
        public decimal? Chedan { get; set; }
        public string HuifangStatus { get; set; }
        public string Huifanger { get; set; }
        public DateTime? Huifangtime { get; set; }
        public string Huifangremark { get; set; }
        public string PingjiaStatus { get; set; }
        public string Pingjiaer { get; set; }
        public DateTime? Pingjiatime { get; set; }
        public decimal? Youhui { get; set; }
        public string Youhuier { get; set; }
        public DateTime? Youhuitime { get; set; }
        public string WangongStatus { get; set; }
        public string Wangonger { get; set; }
        public DateTime? Wangongtime { get; set; }
        public string SonghuoStatus { get; set; }
        public string Songhuoer { get; set; }
        public DateTime? Songhuotime { get; set; }
        public string OrderType1 { get; set; }
        public string OrderType2 { get; set; }
        public string SonghuoGongsi { get; set; }
        public string SonghuoDanhao { get; set; }
        public DateTime? SonghuoTime1 { get; set; }
        public string HuifangJdr { get; set; }
        public string HuifangKehuyijian { get; set; }
    }
}