using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayInsAutoAutoaftermarketDepotCreateormodifyModel Data Structure. /// [Serializable] public class AlipayInsAutoAutoaftermarketDepotCreateormodifyModel : AopObject { /// /// 操作类型: ONLINE-上线, OFFLINE-下线, UPDATE-修改修理厂信息(如修改修理厂名称,修理厂某几天的库存) /// [XmlElement("action_type")] public string ActionType { get; set; } /// /// 营业结束时间,格式:HH:MM /// [XmlElement("business_end_time")] public string BusinessEndTime { get; set; } /// /// 开始营业时间,格式HH:MM /// [XmlElement("business_start_time")] public string BusinessStartTime { get; set; } /// /// 需要更新库存的日期: 如果需要修改某几天的库存,该字段必传,若该字段不传,则默认修改所有的库存 格式:yyyy-MM-dd /// [XmlArray("calendars")] [XmlArrayItem("string")] public List Calendars { get; set; } /// /// 修理厂支付宝账号,用于后续结算线上化 /// [XmlElement("depot_account")] public string DepotAccount { get; set; } /// /// 修理厂详细地址 /// [XmlElement("depot_address")] public string DepotAddress { get; set; } /// /// 服务商侧的修理厂id,需要唯一 /// [XmlElement("depot_id")] public string DepotId { get; set; } /// /// 修理厂名称 /// [XmlElement("depot_name")] public string DepotName { get; set; } /// /// 扩展信息,json格式 /// [XmlElement("extra")] public string Extra { get; set; } /// /// 修理厂联系方式 /// [XmlElement("phone")] public string Phone { get; set; } /// /// 修理厂维修范围,json格式 /// [XmlElement("repair_scope")] public string RepairScope { get; set; } /// /// 修理厂每日可修数量 /// [XmlElement("threshold")] public long Threshold { get; set; } } }