2 changed files with 52 additions and 2 deletions
@ -0,0 +1,22 @@ |
|||
using FreeSql.DataAnnotations; |
|||
using System; |
|||
|
|||
namespace BBWY.Server.Model.Db |
|||
{ |
|||
|
|||
[ Table(Name = "jdshoppin", DisableSyncStructure = true)] |
|||
public partial class JdShopPin { |
|||
|
|||
[Column(StringLength = 100)] |
|||
public string AccessPin { get; set; } |
|||
|
|||
[Column(DbType = "datetime")] |
|||
public DateTime? CreateTime { get; set; } |
|||
|
|||
public long Id { get; set; } |
|||
|
|||
public long? ShopId { get; set; } |
|||
|
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue