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
929 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 HandOverSaleMode
{
public HandOverSaleMode()
{
}
/// <summary>
/// 营业模式
/// </summary>
[JsonProperty(PropertyName = "orderType")]
[Column("orderType")]
public int OrderType { 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; }// 金额
}
}