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.

22 lines
472 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Entity
{
/// <summary>
/// 销售订单分店消费明细
/// </summary>
[Serializable]
public class OrderSubStoreDetail
{
[JsonProperty(PropertyName = "goodId")]
public string GoodId { get; set; }
[JsonProperty(PropertyName = "bizUserId")]
public string BizUserId { get; set; }
}
}