NewGaoKaoApi/PaymentSDK/AliPay/Domain/SpecEntity.cs

37 lines
898 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// SpecEntity Data Structure.
/// </summary>
[Serializable]
public class SpecEntity : AopObject
{
/// <summary>
/// 新增不用传,修改必须传
/// </summary>
[XmlElement("id")]
public string Id { get; set; }
/// <summary>
/// 门店ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 规格名称
/// </summary>
[XmlElement("spec_name")]
public string SpecName { get; set; }
/// <summary>
/// 是否为系统默认规格,同步时默认为false设置不生效只有查询现实时用
/// </summary>
[XmlElement("system")]
public bool System { get; set; }
}
}