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.

30 lines
640 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Stock
{
/// <summary>
/// 配送验收返回对象
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class DispatchTicketReceiveResponse
{
/// <summary>
/// 验收单编号
/// </summary>
[JsonProperty(PropertyName = "no")]
public string No { get; set; }
/// <summary>
/// 验收单ID
/// </summary>
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
}
}