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.
22 lines
401 B
22 lines
401 B
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; }
|
|
|
|
}
|
|
|
|
}
|
|
|