57 lines
1.2 KiB
C#
57 lines
1.2 KiB
C#
using Api.Framework.EntityTmp.SuNing2;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Api.Framework.EntityTmp.SuNing1
|
|
{
|
|
public class AddToolseller
|
|
{
|
|
/// <summary>
|
|
/// 关系pid
|
|
/// </summary>
|
|
public string pid { get; set; }
|
|
/// <summary>
|
|
/// 1 成功,其他 异常
|
|
/// </summary>
|
|
public string status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 错误提示
|
|
/// </summary>
|
|
public string errMsg { get; set; }
|
|
}
|
|
|
|
public class Sn_body
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public AddToolseller addToolseller { get; set; }
|
|
|
|
public Sn_error sn_error { get; set; }
|
|
}
|
|
|
|
public class Sn_responseContent
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public Sn_body sn_body { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 工具商关系
|
|
/// </summary>
|
|
public class ToolsRelation
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public Sn_responseContent sn_responseContent { get; set; }
|
|
}
|
|
|
|
}
|