You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
957 B
C#

using Newtonsoft.Json;
using NPoco;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Entity
{
/// <summary>
/// 优惠分析
/// </summary>
[Serializable]
public class HandOverInfo
{
public HandOverInfo()
{
}
/// <summary>
/// 优惠类型
/// </summary>
[JsonProperty(PropertyName = "promotionType")]
[Column("promotionType")]
public int PromotionType { get; set; }//优惠类型
/// <summary>
/// 优惠次数
/// </summary>
[JsonProperty(PropertyName = "count")]
[Column("count")]
public int Count { get; set; }//优惠次数
/// <summary>
/// 优惠金额
/// </summary>
[JsonProperty(PropertyName = "amount")]
[Column("amount")]
public decimal Amount { get; set; }// 优惠金额
}
}