|
1 |
| -using FreeSql.DatabaseModel;using System; |
2 |
| -using System.Collections; |
3 |
| -using System.Collections.Generic; |
4 |
| -using System.Linq; |
5 |
| -using System.Reflection; |
6 |
| -using System.Threading.Tasks; |
| 1 | +using FreeSql.DataAnnotations; |
7 | 2 | using Newtonsoft.Json;
|
8 |
| -using FreeSql.DataAnnotations; |
9 | 3 |
|
10 |
| -namespace DofGMTool.Models { |
| 4 | +namespace DofGMTool.Models; |
11 | 5 |
|
12 |
| - [JsonObject(MemberSerialization.OptIn), Table(Name = "member_join_info", DisableSyncStructure = true)] |
13 |
| - public partial class MemberJoinInfo { |
| 6 | +[JsonObject(MemberSerialization.OptIn), Table(Name = "member_join_info", DisableSyncStructure = true)] |
| 7 | +public partial class d_taiwan_MemberJoinInfo |
| 8 | +{ |
14 | 9 |
|
15 |
| - [JsonProperty, Column(Name = "m_id", IsPrimary = true)] |
16 |
| - public uint MId { get; set; } = 0; |
| 10 | + [JsonProperty, Column(Name = "m_id", IsPrimary = true)] |
| 11 | + public uint MId { get; set; } = 0; |
17 | 12 |
|
18 |
| - [JsonProperty, Column(Name = "contry_code")] |
19 |
| - public byte ContryCode { get; set; } = 0; |
| 13 | + [JsonProperty, Column(Name = "contry_code")] |
| 14 | + public byte ContryCode { get; set; } = 0; |
20 | 15 |
|
21 |
| - [JsonProperty, Column(Name = "error_type")] |
22 |
| - public byte ErrorType { get; set; } = 0; |
| 16 | + [JsonProperty, Column(Name = "error_type")] |
| 17 | + public byte ErrorType { get; set; } = 0; |
23 | 18 |
|
24 |
| - [JsonProperty, Column(Name = "game_use_history")] |
25 |
| - public byte GameUseHistory { get; set; } = 0; |
| 19 | + [JsonProperty, Column(Name = "game_use_history")] |
| 20 | + public byte GameUseHistory { get; set; } = 0; |
26 | 21 |
|
27 |
| - [JsonProperty, Column(Name = "ip", StringLength = 15, IsNullable = false)] |
28 |
| - public string Ip { get; set; } |
| 22 | + [JsonProperty, Column(Name = "ip", StringLength = 15, IsNullable = false)] |
| 23 | + public string Ip { get; set; } |
29 | 24 |
|
30 |
| - [JsonProperty, Column(Name = "login_ip", StringLength = 15, IsNullable = false)] |
31 |
| - public string LoginIp { get; set; } |
| 25 | + [JsonProperty, Column(Name = "login_ip", StringLength = 15, IsNullable = false)] |
| 26 | + public string LoginIp { get; set; } |
32 | 27 |
|
33 |
| - [JsonProperty, Column(Name = "login_time")] |
34 |
| - public int LoginTime { get; set; } = 0; |
| 28 | + [JsonProperty, Column(Name = "login_time")] |
| 29 | + public int LoginTime { get; set; } = 0; |
35 | 30 |
|
36 |
| - [JsonProperty, Column(Name = "reg_date")] |
37 |
| - public int RegDate { get; set; } = 0; |
38 |
| - |
39 |
| - } |
| 31 | + [JsonProperty, Column(Name = "reg_date")] |
| 32 | + public int RegDate { get; set; } = 0; |
40 | 33 |
|
41 | 34 | }
|
0 commit comments