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.

48 lines
1.1 KiB
C#

9 months ago
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 AskgoodsStatusRequest
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 单据ID
/// </summary>
[JsonProperty(PropertyName = "ticketId")]
public string TicketId { get; set; }
/// <summary>
/// 操作类型 (1-驳回2-审核通过 3-作废4-反审核)
/// </summary>
[JsonProperty(PropertyName = "type")]
public int Type { get; set; }
/// <summary>
/// 操作员
/// </summary>
[JsonProperty(PropertyName = "operator")]
public string Operator { get; set; }
/// <summary>
/// 操作说明
/// </summary>
[JsonProperty(PropertyName = "reason")]
public string Reason { get; set; }
}
}