36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using System;
|
||
namespace Zxd.Entity.Zxd
|
||
{
|
||
[Table("WX_OrderActive")]
|
||
public class WxOrderActive
|
||
{
|
||
public WxOrderActive()
|
||
{
|
||
}
|
||
[Key]
|
||
public int Id { get; set; }
|
||
public string? ProductCode { get; set; }
|
||
public DateTime StartTime { get; set; }
|
||
public DateTime? EndTime { get; set; }
|
||
public string? ActiveCode { get; set; }
|
||
public int ActiveType { get; set; }
|
||
public string? CompanyCode { get; set; }
|
||
public int? MinCount { get; set; }
|
||
public int DonateDay { get; set; }
|
||
public int ProductType { get; set; }
|
||
public string? ProductName { get; set; }
|
||
|
||
public int ProductId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否跟随订单赠送,1:用订单表的giftdays字段作为赠送时长,0:用本表的donateday字段作为赠送时长
|
||
/// </summary>
|
||
public int IsFollowOrder { get; set; }
|
||
public string? Giftype { get; set; }
|
||
public string? Activename { get; set; }
|
||
public int? Isdelete { get; set; }
|
||
public int? Deptid { get; set; }
|
||
}
|
||
}
|
||
|