using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiCateringPosPaymodeDeleteModel Data Structure. /// [Serializable] public class KoubeiCateringPosPaymodeDeleteModel : AopObject { /// /// 支付方式名称 /// [XmlElement("pay_name")] public string PayName { get; set; } /// /// 门店id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 是否系统(false:否;true:是) /// [XmlElement("system")] public bool System { get; set; } } }