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.

80 lines
2.1 KiB
C#

9 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Stock
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class StockUncheckTicketDetailUpdate
{
/// <summary>
/// 明细ID
/// </summary>
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
/// <summary>
/// 盘点单ID
/// </summary>
[JsonProperty(PropertyName = "ticketId")]
public string TicketId { get; set; }
/// <summary>
/// 盘点单编号
/// </summary>
[JsonProperty(PropertyName = "ticketNo")]
public string TicketNo { get; set; }
/// <summary>
/// 系统价格
/// </summary>
[JsonProperty(PropertyName = "sysPrice")]
public decimal SysPrice { get; set; }
/// <summary>
/// 系统数量
/// </summary>
[JsonProperty(PropertyName = "sysAmount")]
public decimal SysAmount { get; set; }
/// <summary>
/// 盘点数量
/// </summary>
[JsonProperty(PropertyName = "checkAmount")]
public decimal CheckAmount { get; set; }
/// <summary>
/// 差异数量
/// </summary>
[JsonProperty(PropertyName = "differenceAmount")]
public decimal DifferenceAmount { get; set; }
/// <summary>
/// 系统金额
/// </summary>
[JsonProperty(PropertyName = "sysMoney")]
public decimal SysMoney { get; set; }
/// <summary>
/// 盘点金额
/// </summary>
[JsonProperty(PropertyName = "checkMoney")]
public decimal CheckMoney { get; set; }
/// <summary>
/// 差异金额
/// </summary>
[JsonProperty(PropertyName = "differenceMoney")]
public decimal DifferenceMoney { get; set; }
/// <summary>
/// 备注说明
/// </summary>
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
}
}