Zxd.Core/code/Zxd.Entity/Zxd/WxOrderActive.cs

36 lines
1.1 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;
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; }
}
}