2 changed files with 37 additions and 0 deletions
@ -0,0 +1,28 @@ |
|||
using FreeSql.DataAnnotations; |
|||
using System; |
|||
|
|||
namespace BBWY.Server.Model.Db |
|||
{ |
|||
|
|||
[Table(Name = "ordersynctask", DisableSyncStructure = true)] |
|||
public partial class Ordersynctask |
|||
{ |
|||
|
|||
[Column(DbType = "bigint(1)", IsPrimary = true)] |
|||
public long Id { get; set; } |
|||
|
|||
[Column(DbType = "bigint(1)")] |
|||
public long ShopId { get; set; } |
|||
|
|||
[Column(DbType = "int(1)", MapType = typeof(int))] |
|||
public Enums.OrderSyncState State { get; set; } |
|||
|
|||
[Column(DbType = "datetime")] |
|||
public DateTime SyncEndTime { get; set; } |
|||
|
|||
[Column(DbType = "datetime")] |
|||
public DateTime SyncStartTime { get; set; } |
|||
|
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue