You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
56 lines
1.4 KiB
2 years ago
|
namespace Dto
|
||
|
{
|
||
|
public class FindBhdlGzblDto
|
||
|
{
|
||
|
|
||
|
public string ajmc { get; set; }
|
||
|
/// <summary>
|
||
|
/// 必要参数
|
||
|
/// </summary>
|
||
|
public string bhdlbh { get; set; }
|
||
|
public string bmsah { get; set; }
|
||
|
public string cbbmbm { get; set; }
|
||
|
public string cbbmmc { get; set; }
|
||
|
public string cbdwbm { get; set; }
|
||
|
public string cbdwmc { get; set; }
|
||
|
public string cbjcgbm { get; set; }
|
||
|
public string cbjcgmc { get; set; }
|
||
|
public string clqkbm { get; set; }
|
||
|
public string dsr { get; set; }
|
||
|
public string sfkcz { get; set; }
|
||
|
public string sqrbh { get; set; }
|
||
|
public string sqrq { get; set; }
|
||
|
public string sqrxm { get; set; }
|
||
|
public string sxbh { get; set; }
|
||
|
public string sxlsbh { get; set; }
|
||
|
public string sxlxdm { get; set; }
|
||
|
public string sxlxmc { get; set; }
|
||
|
public int? sxqx { get; set; }
|
||
|
public int? syrq { get; set; }
|
||
|
public string zjhm { get; set; }
|
||
|
public string zt { get; set; }
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
public class ResultGzbl
|
||
|
{
|
||
|
|
||
|
public bool? success { get; set; }
|
||
|
|
||
|
public string message { get; set; }
|
||
|
|
||
|
public string code { get; set; }
|
||
|
|
||
|
|
||
|
public GzblDto data { get; set; }
|
||
|
}
|
||
|
|
||
|
public class GzblDto
|
||
|
{
|
||
|
public int total { get; set; }
|
||
|
|
||
|
public List<FindBhdlGzblDto> coumment { get; set; }
|
||
|
}
|
||
|
}
|