|
| 1 | +using System; |
| 2 | + |
| 3 | +namespace QueryDB.Core.Tests |
| 4 | +{ |
| 5 | + public class Entities |
| 6 | + { |
| 7 | + public class MSSQL |
| 8 | + { |
| 9 | + public class Agents |
| 10 | + { |
| 11 | + public string Agent_Code { get; set; } |
| 12 | + public string Agent_Name { get; set; } |
| 13 | + public string Working_Area { get; set; } |
| 14 | + public decimal Commission { get; set; } |
| 15 | + public string Phone_No { get; set; } |
| 16 | + public string Country { get; set; } |
| 17 | + } |
| 18 | + public class Orders |
| 19 | + { |
| 20 | + public string Agent_Code { get; set; } |
| 21 | + public string Agent { get; set; } |
| 22 | + public string Agent_Name { get; set; } |
| 23 | + public string Agent_Location { get; set; } |
| 24 | + public string Cust_Code { get; set; } |
| 25 | + public string Customer { get; set; } |
| 26 | + public string Cust_Name { get; set; } |
| 27 | + public string Customer_Location { get; set; } |
| 28 | + public decimal Ord_Num { get; set; } |
| 29 | + public decimal Ord_Amount { get; set; } |
| 30 | + public decimal Advance_Amount { get; set; } |
| 31 | + public string Ord_Description { get; set; } |
| 32 | + } |
| 33 | + public class DataTypes |
| 34 | + { |
| 35 | + public long BigInt_Column { get; set; } |
| 36 | + public byte[] Binary_Column { get; set; } |
| 37 | + public bool Bit_Column { get; set; } |
| 38 | + public string Char_Column { get; set; } |
| 39 | + public DateTime Date_Column { get; set; } |
| 40 | + public DateTime DateTime_Column { get; set; } |
| 41 | + public DateTime DateTime2_Column { get; set; } |
| 42 | + public DateTimeOffset DateTimeOffset_Column { get; set; } |
| 43 | + public decimal Decimal_Column { get; set; } |
| 44 | + public double Float_Column { get; set; } |
| 45 | + public byte[] Image_Column { get; set; } |
| 46 | + public int Int_Column { get; set; } |
| 47 | + public decimal Money_Column { get; set; } |
| 48 | + public string NChar_Column { get; set; } |
| 49 | + public string NText_Column { get; set; } |
| 50 | + public decimal Numeric_Column { get; set; } |
| 51 | + public string NVarChar_Column { get; set; } |
| 52 | + public float Real_Column { get; set; } |
| 53 | + public DateTime SmallDateTime_Column { get; set; } |
| 54 | + public short SmallInt_Column { get; set; } |
| 55 | + public decimal SmallMoney_Column { get; set; } |
| 56 | + public object SqlVariant_Column { get; set; } |
| 57 | + public string Text_Column { get; set; } |
| 58 | + public TimeSpan Time_Column { get; set; } |
| 59 | + public byte[] Timestamp_Column { get; set; } |
| 60 | + public byte TinyInt_Column { get; set; } |
| 61 | + public Guid UniqueIdentifier_Column { get; set; } |
| 62 | + public byte[] VarBinary_Column { get; set; } |
| 63 | + public string VarChar_Column { get; set; } |
| 64 | + public string Xml_Column { get; set; } |
| 65 | + } |
| 66 | + public class Details |
| 67 | + { |
| 68 | + public string Agent_Code { get; set; } |
| 69 | + public string Agent { get; set; } |
| 70 | + public string Cust_Code { get; set; } |
| 71 | + public string Customer { get; set; } |
| 72 | + public decimal Ord_Num { get; set; } |
| 73 | + public decimal Ord_Amount { get; set; } |
| 74 | + } |
| 75 | + } |
| 76 | + public class MySQL |
| 77 | + { |
| 78 | + public class Agents |
| 79 | + { |
| 80 | + public string Agent_Code { get; set; } |
| 81 | + public string Agent_Name { get; set; } |
| 82 | + public string Working_Area { get; set; } |
| 83 | + public decimal Commission { get; set; } |
| 84 | + public string Phone_No { get; set; } |
| 85 | + public string Country { get; set; } |
| 86 | + } |
| 87 | + public class Orders |
| 88 | + { |
| 89 | + public string Agent_Code { get; set; } |
| 90 | + public string Agent { get; set; } |
| 91 | + public string Agent_Name { get; set; } |
| 92 | + public string Agent_Location { get; set; } |
| 93 | + public string Cust_Code { get; set; } |
| 94 | + public string Customer { get; set; } |
| 95 | + public string Cust_Name { get; set; } |
| 96 | + public string Customer_Location { get; set; } |
| 97 | + public decimal Ord_Num { get; set; } |
| 98 | + public decimal Ord_Amount { get; set; } |
| 99 | + public decimal Advance_Amount { get; set; } |
| 100 | + public string Ord_Description { get; set; } |
| 101 | + } |
| 102 | + public class DataTypes |
| 103 | + { |
| 104 | + public long BigInt_Column { get; set; } |
| 105 | + public ulong Bit_Column { get; set; } |
| 106 | + public string Char_Column { get; set; } |
| 107 | + public DateTime Date_Column { get; set; } |
| 108 | + public DateTime DateTime_Column { get; set; } |
| 109 | + public decimal Decimal_Column { get; set; } |
| 110 | + public float Float_Column { get; set; } |
| 111 | + public int Int_Column { get; set; } |
| 112 | + public string LongText_Column { get; set; } |
| 113 | + public int MediumInt_Column { get; set; } |
| 114 | + public string MediumText_Column { get; set; } |
| 115 | + public short SmallInt_Column { get; set; } |
| 116 | + public string Text_Column { get; set; } |
| 117 | + public TimeSpan Time_Column { get; set; } |
| 118 | + public DateTime Timestamp_Column { get; set; } |
| 119 | + public sbyte TinyInt_Column { get; set; } |
| 120 | + public string TinyText_Column { get; set; } |
| 121 | + public byte[] VarBinary_Column { get; set; } |
| 122 | + public string VarChar_Column { get; set; } |
| 123 | + } |
| 124 | + public class Details |
| 125 | + { |
| 126 | + public string Agent_Code { get; set; } |
| 127 | + public string Agent { get; set; } |
| 128 | + public string Cust_Code { get; set; } |
| 129 | + public string Customer { get; set; } |
| 130 | + public decimal Ord_Num { get; set; } |
| 131 | + public decimal Ord_Amount { get; set; } |
| 132 | + } |
| 133 | + } |
| 134 | + public class Oracle |
| 135 | + { |
| 136 | + public class Agents |
| 137 | + { |
| 138 | + public string Agent_Code { get; set; } |
| 139 | + public string Agent_Name { get; set; } |
| 140 | + public string Working_Area { get; set; } |
| 141 | + public double Commission { get; set; } |
| 142 | + public string Phone_No { get; set; } |
| 143 | + public string Country { get; set; } |
| 144 | + } |
| 145 | + public class Orders |
| 146 | + { |
| 147 | + public string Agent_Code { get; set; } |
| 148 | + public string Agent { get; set; } |
| 149 | + public string Agent_Name { get; set; } |
| 150 | + public string Agent_Location { get; set; } |
| 151 | + public string Cust_Code { get; set; } |
| 152 | + public string Customer { get; set; } |
| 153 | + public string Cust_Name { get; set; } |
| 154 | + public string Customer_Location { get; set; } |
| 155 | + public int Ord_Num { get; set; } |
| 156 | + public double Ord_Amount { get; set; } |
| 157 | + public double Advance_Amount { get; set; } |
| 158 | + public string Ord_Description { get; set; } |
| 159 | + } |
| 160 | + public class DataTypes |
| 161 | + { |
| 162 | + public byte[] BFile_Column { get; set; } |
| 163 | + public byte[] Blob_Column { get; set; } |
| 164 | + public string Char_Column { get; set; } |
| 165 | + public string Clob_Column { get; set; } |
| 166 | + public DateTime Date_Column { get; set; } |
| 167 | + public decimal Float_Column { get; set; } |
| 168 | + public decimal Integer_Column { get; set; } |
| 169 | + public long IntervalYearToMonth_Column { get; set; } |
| 170 | + public TimeSpan InternalDayToSecond_Column { get; set; } |
| 171 | + public string Long_Column { get; set; } |
| 172 | + public string NChar_Column { get; set; } |
| 173 | + public string NClob_Column { get; set; } |
| 174 | + public decimal Number_Column { get; set; } |
| 175 | + public string NVarchar2_Column { get; set; } |
| 176 | + public byte[] Raw_Column { get; set; } |
| 177 | + public DateTime Timestamp_Column { get; set; } |
| 178 | + public DateTime TimestampWithLocalTimeZone_Column { get; set; } |
| 179 | + public DateTime TimestampWithTimeZone_Column { get; set; } |
| 180 | + public string Varchar_Column { get; set; } |
| 181 | + public string Varchar2_Column { get; set; } |
| 182 | + } |
| 183 | + public class Details |
| 184 | + { |
| 185 | + public string Agent_Code { get; set; } |
| 186 | + public string Agent { get; set; } |
| 187 | + public string Cust_Code { get; set; } |
| 188 | + public string Customer { get; set; } |
| 189 | + public int Ord_Num { get; set; } |
| 190 | + public double Ord_Amount { get; set; } |
| 191 | + } |
| 192 | + } |
| 193 | + public class PostgreSQL |
| 194 | + { |
| 195 | + public class Agents |
| 196 | + { |
| 197 | + public string Agent_Code { get; set; } |
| 198 | + public string Agent_Name { get; set; } |
| 199 | + public string Working_Area { get; set; } |
| 200 | + public decimal Commission { get; set; } |
| 201 | + public string Phone_No { get; set; } |
| 202 | + public string Country { get; set; } |
| 203 | + } |
| 204 | + public class Orders |
| 205 | + { |
| 206 | + public string Agent_Code { get; set; } |
| 207 | + public string Agent { get; set; } |
| 208 | + public string Agent_Name { get; set; } |
| 209 | + public string Agent_Location { get; set; } |
| 210 | + public string Cust_Code { get; set; } |
| 211 | + public string Customer { get; set; } |
| 212 | + public string Cust_Name { get; set; } |
| 213 | + public string Customer_Location { get; set; } |
| 214 | + public decimal Ord_Num { get; set; } |
| 215 | + public decimal Ord_Amount { get; set; } |
| 216 | + public decimal Advance_Amount { get; set; } |
| 217 | + public string Ord_Description { get; set; } |
| 218 | + } |
| 219 | + public class DataTypes |
| 220 | + { |
| 221 | + public long BigInt_Column { get; set; } |
| 222 | + public bool Boolean_Column { get; set; } |
| 223 | + public byte[] Bytea_Column { get; set; } |
| 224 | + public string Char_Column { get; set; } |
| 225 | + public string Varchar_Column { get; set; } |
| 226 | + public DateTime Date_Column { get; set; } |
| 227 | + public double Double_Column { get; set; } |
| 228 | + public int Int_Column { get; set; } |
| 229 | + public decimal Money_Column { get; set; } |
| 230 | + public decimal Numeric_Column { get; set; } |
| 231 | + public float Real_Column { get; set; } |
| 232 | + public short SmallInt_Column { get; set; } |
| 233 | + public string Text_Column { get; set; } |
| 234 | + public TimeSpan Time_Column { get; set; } |
| 235 | + public DateTime Timestamp_Column { get; set; } |
| 236 | + public Guid Uuid_Column { get; set; } |
| 237 | + } |
| 238 | + public class Details |
| 239 | + { |
| 240 | + public string Agent_Code { get; set; } |
| 241 | + public string Agent { get; set; } |
| 242 | + public string Cust_Code { get; set; } |
| 243 | + public string Customer { get; set; } |
| 244 | + public decimal Ord_Num { get; set; } |
| 245 | + public decimal Ord_Amount { get; set; } |
| 246 | + } |
| 247 | + } |
| 248 | + } |
| 249 | +} |
0 commit comments