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
1003 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 StoreCostTicketUpdateStatusRequest
{
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 单据ID
/// </summary>
[JsonProperty(PropertyName = "ticketId")]
public string TicketId { get; set; }
/// <summary>
/// 操作员
/// </summary>
[JsonProperty(PropertyName = "operator")]
public string Operator { get; set; }
/// <summary>
/// 操作类型 (1-审核2-作废)
/// </summary>
[JsonProperty(PropertyName = "type")]
public int Type { get; set; }
}
}