ComplianceServer/oldcode/Core.Model/Entity/WX_OrderActive.cs

32 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}