|
1 | 1 | using System; |
2 | 2 | using System.Linq; |
3 | | -using Newtonsoft.Json; |
4 | | -using Newtonsoft.Json.Linq; |
5 | 3 | using MySql.Data.Types; |
6 | 4 | using System.ComponentModel.DataAnnotations.Schema; |
7 | 5 | using System.ComponentModel.DataAnnotations; |
8 | 6 | using MyStaging.DataAnnotations; |
| 7 | +using System.Text.Json; |
9 | 8 |
|
10 | 9 | namespace Mysql.Model |
11 | 10 | { |
12 | | - [Table(name: "m_type", Schema = "mystaging")] |
13 | | - public partial class M_type |
14 | | - { |
15 | | - [PrimaryKey] |
16 | | - public sbyte t1 { get; set; } |
17 | | - public short t2 { get; set; } |
18 | | - [Column(TypeName = "mediumint(9)")] |
19 | | - public int? t3 { get; set; } |
20 | | - public int? t4 { get; set; } |
21 | | - public int? t5 { get; set; } |
22 | | - public long? t6 { get; set; } |
23 | | - public long? t7 { get; set; } |
24 | | - public double? t8 { get; set; } |
25 | | - public double? t9 { get; set; } |
26 | | - public float? t10 { get; set; } |
27 | | - [Column(TypeName = "decimal(10,2)")] |
28 | | - public decimal? t11 { get; set; } |
29 | | - public decimal? t12 { get; set; } |
30 | | - public string t13 { get; set; } |
31 | | - public string t14 { get; set; } |
32 | | - [Column(TypeName = "date")] |
33 | | - public DateTime? t15 { get; set; } |
34 | | - public TimeSpan? t16 { get; set; } |
35 | | - [Column(TypeName = "year(4)")] |
36 | | - public DateTime? t17 { get; set; } |
37 | | - public DateTime t18 { get; set; } |
38 | | - public DateTime? t19 { get; set; } |
39 | | - [Column(TypeName = "tinyblob")] |
40 | | - public byte[] t20 { get; set; } |
41 | | - [Column(TypeName = "blob")] |
42 | | - public byte[] t21 { get; set; } |
43 | | - [Column(TypeName = "mediumblob")] |
44 | | - public byte[] t22 { get; set; } |
45 | | - [Column(TypeName = "longblob")] |
46 | | - public byte[] t23 { get; set; } |
47 | | - [Column(TypeName = "tinytext")] |
48 | | - public string t24 { get; set; } |
49 | | - [Column(TypeName = "text")] |
50 | | - public string t25 { get; set; } |
51 | | - [Column(TypeName = "mediumtext")] |
52 | | - public string t26 { get; set; } |
53 | | - [Column(TypeName = "enum('')")] |
54 | | - public string t27 { get; set; } |
55 | | - public long? t29 { get; set; } |
56 | | - [Column(TypeName = "varbinary(255)")] |
57 | | - public byte[] t30 { get; set; } |
58 | | - public JToken t39 { get; set; } |
59 | | - [Column(TypeName = "tinyint(1)")] |
60 | | - public bool? T40 { get; set; } |
61 | | - [Column(TypeName = "char(36)")] |
62 | | - public Guid? t41 { get; set; } |
63 | | - } |
| 11 | + [Table(name: "m_type", Schema = "mystaging")] |
| 12 | + public partial class M_type |
| 13 | + { |
| 14 | + [PrimaryKey] |
| 15 | + public sbyte t1 { get; set; } |
| 16 | + public short t2 { get; set; } |
| 17 | + [Column(TypeName = "mediumint(9)")] |
| 18 | + public int? t3 { get; set; } |
| 19 | + public int? t4 { get; set; } |
| 20 | + public int? t5 { get; set; } |
| 21 | + public long? t6 { get; set; } |
| 22 | + public long? t7 { get; set; } |
| 23 | + public double? t8 { get; set; } |
| 24 | + public double? t9 { get; set; } |
| 25 | + public float? t10 { get; set; } |
| 26 | + [Column(TypeName = "decimal(10,2)")] |
| 27 | + public decimal? t11 { get; set; } |
| 28 | + public decimal? t12 { get; set; } |
| 29 | + public string t13 { get; set; } |
| 30 | + public string t14 { get; set; } |
| 31 | + [Column(TypeName = "date")] |
| 32 | + public DateTime? t15 { get; set; } |
| 33 | + public TimeSpan? t16 { get; set; } |
| 34 | + [Column(TypeName = "year(4)")] |
| 35 | + public DateTime? t17 { get; set; } |
| 36 | + public DateTime t18 { get; set; } |
| 37 | + public DateTime? t19 { get; set; } |
| 38 | + [Column(TypeName = "tinyblob")] |
| 39 | + public byte[] t20 { get; set; } |
| 40 | + [Column(TypeName = "blob")] |
| 41 | + public byte[] t21 { get; set; } |
| 42 | + [Column(TypeName = "mediumblob")] |
| 43 | + public byte[] t22 { get; set; } |
| 44 | + [Column(TypeName = "longblob")] |
| 45 | + public byte[] t23 { get; set; } |
| 46 | + [Column(TypeName = "tinytext")] |
| 47 | + public string t24 { get; set; } |
| 48 | + [Column(TypeName = "text")] |
| 49 | + public string t25 { get; set; } |
| 50 | + [Column(TypeName = "mediumtext")] |
| 51 | + public string t26 { get; set; } |
| 52 | + [Column(TypeName = "enum('')")] |
| 53 | + public string t27 { get; set; } |
| 54 | + public long? t29 { get; set; } |
| 55 | + [Column(TypeName = "varbinary(255)")] |
| 56 | + public byte[] t30 { get; set; } |
| 57 | + public JsonElement t39 { get; set; } |
| 58 | + [Column(TypeName = "tinyint(1)")] |
| 59 | + public bool? T40 { get; set; } |
| 60 | + [Column(TypeName = "char(36)")] |
| 61 | + public Guid? t41 { get; set; } |
| 62 | + } |
64 | 63 | } |
0 commit comments