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.
29 lines
590 B
29 lines
590 B
using FreeSql.DataAnnotations;
|
|
using System;
|
|
|
|
namespace BBWY.Server.Model.Db
|
|
{
|
|
|
|
[Table(Name = "shoppopularize", DisableSyncStructure = true)]
|
|
public partial class Shoppopularize {
|
|
|
|
[Column(IsPrimary = true)]
|
|
public long Id { get; set; }
|
|
|
|
[Column(DbType = "decimal(18,2)")]
|
|
public decimal Cost { get; set; } = 0.0M;
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[Column(DbType = "datetime")]
|
|
public DateTime? Date { get; set; }
|
|
|
|
[Column(StringLength = 50)]
|
|
public string ItemName { get; set; }
|
|
|
|
public long? ShopId { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|