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.
45 lines
865 B
45 lines
865 B
using FreeSql.DatabaseModel;using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using FreeSql.DataAnnotations;
|
|
|
|
namespace BBWY.Server.Model.Db {
|
|
|
|
[Table(Name = "gifttemplatesku", DisableSyncStructure = true)]
|
|
public partial class GiftTemplateSku
|
|
{
|
|
|
|
[Column(IsPrimary = true)]
|
|
public long Id { get; set; }
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
|
|
public long? GiftTemplateId { get; set; }
|
|
|
|
|
|
public string Logo { get; set; }
|
|
|
|
[Column(DbType = "decimal(18,2)")]
|
|
public decimal? Price { get; set; }
|
|
|
|
|
|
public long? ShopId { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string SkuId { get; set; }
|
|
|
|
|
|
public string SpuId { get; set; }
|
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|