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

35 lines
809 B

3 years ago
using FreeSql.DataAnnotations;
using System;
namespace BBWY.Server.Model.Db
{
[Table(Name = "giftorder", DisableSyncStructure = true)]
3 years ago
public partial class GiftOrder
3 years ago
{
3 years ago
3 years ago
[Column(StringLength = 50, IsPrimary = true, IsNullable = false)]
public string Id { get; set; }
3 years ago
3 years ago
[Column(DbType = "datetime")]
public DateTime? CreateTime { get; set; }
3 years ago
3 years ago
[Column(DbType = "datetime")]
public DateTime? ModifyTime { get; set; }
[Column(MapType = typeof(int?))]
public Enums.OrderState? OrderState { get; set; }
3 years ago
[Column(MapType = typeof(int))]
public Enums.Platform Platform { get; set; }
3 years ago
3 years ago
public long ShopId { get; set; }
3 years ago
3 years ago
[Column(DbType = "datetime")]
public DateTime? StartTime { get; set; }
}
3 years ago
}