NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceFixTaskproble...

49 lines
1.6 KiB
C#
Raw 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>
/// AlipayCommerceFixTaskproblemQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceFixTaskproblemQueryModel : AopObject
{
/// <summary>
/// 非必须,仅用在部分行业,请与业务对接同学沟通后确定是否使用。
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 非必须只在iot场景下使用。机型的itemId。
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 问题类型的一级分类。 如何获取:与业务对接同学确认
/// </summary>
[XmlElement("problem_level_1")]
public string ProblemLevel1 { get; set; }
/// <summary>
/// 问题类型的二级分类。 如何获取:根据一级分类的查询结果。
/// </summary>
[XmlElement("problem_level_2")]
public string ProblemLevel2 { get; set; }
/// <summary>
/// 生态协同单的业务类型。 枚举值:IoTMTN:IoT维保场景;jfMTN:生活缴费;C2B:C2B;riskControl:行业风险任务。
/// </summary>
[XmlElement("rule_scene")]
public string RuleScene { get; set; }
/// <summary>
/// 用来标识接口返回的是提报端,还是处理端使用的问题分类列表。 枚举值:SUBMIT:维保提报端;DEAL:维保处理端
/// </summary>
[XmlElement("scope")]
public string Scope { get; set; }
}
}