32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
using System;
|
||
using System.ComponentModel.DataAnnotations;
|
||
|
||
namespace CRM.Core.Model.Entity
|
||
{
|
||
public class WX_OrderActive
|
||
{
|
||
[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; }
|
||
}
|
||
}
|