NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiQualityTestShieldTest...

31 lines
1.1 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>
/// KoubeiQualityTestShieldTestcaseQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiQualityTestShieldTestcaseQueryModel : AopObject
{
/// <summary>
/// 接口支持两种维度的查询 1 测试集维度如果想查询测试集biz_id输入测试集id 2 测试用例维度如果想查询测试用例biz_id输入测试 单个查询单个id EG:123 多个查询多个id EG:123,321 全部查询全部id EG:ALL
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 测试集维度COLLECTION_TYPE 测试用例维度CASE_TYPE 全部数据ALL
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 参数名isv名称 应用场景isv需要输入自己的名称用来查询当前isv下的测试用例
/// </summary>
[XmlElement("isv_name")]
public string IsvName { get; set; }
}
}