步步为盈
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.

44 lines
1.0 KiB

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 {
[JsonObject(MemberSerialization.OptIn), Table(Name = "gifttemplatesku", DisableSyncStructure = true)]
public partial class Gifttemplatesku {
[JsonProperty, Column(IsPrimary = true)]
public long Id { get; set; }
[JsonProperty, Column(DbType = "datetime")]
public DateTime? CreateTime { get; set; }
[JsonProperty]
public long? GiftTemplateId { get; set; }
[JsonProperty, Column(DbType = "decimal(18,2)")]
public decimal? JdPrice { get; set; }
[JsonProperty]
public string Logo { get; set; }
[JsonProperty]
public long? ShopId { get; set; }
[JsonProperty]
public string Sku { get; set; }
[JsonProperty, Column(StringLength = 50)]
public string Spu { get; set; }
[JsonProperty, Column(StringLength = 100)]
public string Title { get; set; }
}
}