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.

37 lines
904 B
C#

9 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
using POSV.Stock;
namespace POSV.Card
{
/// <summary>
/// 盘点明细信息更新
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class StockUncheckTicketDetailUpdateRequest
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 操作员工号
/// </summary>
[JsonProperty(PropertyName = "workerNo")]
public string WorkerNo { get; set; }
/// <summary>
/// 盘点明细信息列表
/// </summary>
[JsonProperty(PropertyName = "detailList")]
public List<StockUncheckTicketDetailUpdate> DetailList { get; set; }
}
}