using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiRhinoOrderTagGetResponse. /// public class OapiRhinoOrderTagGetResponse : DingTalkResponse { /// /// 响应码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 返回信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 调用结果 /// [XmlElement("model")] public OrderTagDtoDomain Model { get; set; } /// /// OrderTagDtoDomain Data Structure. /// [Serializable] public class OrderTagDtoDomain : TopObject { /// /// bom是否ready /// [XmlElement("bom_ready")] public bool BomReady { get; set; } /// /// 是否为2C订单 /// [XmlElement("customize_order")] public bool CustomizeOrder { get; set; } /// /// embroidery是否ready /// [XmlElement("embroidery_ready")] public bool EmbroideryReady { get; set; } /// /// 商家货号 /// [XmlElement("goods_no")] public string GoodsNo { get; set; } /// /// 唛架包是否ready /// [XmlElement("marker_ready")] public bool MarkerReady { get; set; } /// /// 是否不需要BOM,除非明确设置为true,否则均为false /// [XmlElement("no_bom")] public bool NoBom { get; set; } /// /// 是否不需要GSD,除非明确设置为true,否则均为false /// [XmlElement("no_gsd")] public bool NoGsd { get; set; } /// /// 是否不需要laser,除非明确设置为true,否则均为false /// [XmlElement("no_laser")] public bool NoLaser { get; set; } /// /// 是否不需要唛架,除非明确设置为true,否则均为false /// [XmlElement("no_marker")] public bool NoMarker { get; set; } /// /// 是否需要跳过sap,除非明确设置为true,否则均不跳过 /// [XmlElement("skip_sap")] public bool SkipSap { get; set; } /// /// 是否跳过供应链相关,除非明确设置为true,否则均不跳过 /// [XmlElement("skip_supply_chain")] public bool SkipSupplyChain { get; set; } } } }