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.

40 lines
883 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
using NPoco;
namespace POSV.Entity
{
/// <summary>
/// 门店可登陆员工
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class PosAuth
{
public PosAuth()
{
}
/// <summary>
/// 计费模式(0租赁1买断)
/// </summary>
[JsonProperty(PropertyName = "costMode")]
public int CostMode { get; set; }
/// <summary>
/// 到期时间
/// </summary>
[JsonProperty(PropertyName = "dueDate")]
public string DueDate { get; set; }
/// <summary>
/// 剩余天数
/// </summary>
[JsonProperty(PropertyName = "authDays")]
public int AuthDays { get; set; }
}
}