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.

42 lines
1004 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
namespace POSV.Card
{
/// <summary>
/// 盘点单状态更新
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class StockCheckTicketStatusUpdateRequest
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 仓库ID
/// </summary>
[JsonProperty(PropertyName = "storageId")]
public string StorageId { get; set; }
/// <summary>
/// 操作类型(1-审核;2-作废;)
/// </summary>
[JsonProperty(PropertyName = "status")]
public int Status { get; set; }
/// <summary>
/// 操作员工号
/// </summary>
[JsonProperty(PropertyName = "checkMan")]
public string CheckMan { get; set; }
}
}