You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
672 B
28 lines
672 B
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; }
|
|
|
|
}
|
|
|
|
}
|
|
|