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.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Gdsi.Model
|
|
|
|
|
{
|
|
|
|
|
public class YBR
|
|
|
|
|
{
|
|
|
|
|
public string infcode { get; set; }
|
|
|
|
|
|
|
|
|
|
public YBoutput output { get; set; }
|
|
|
|
|
|
|
|
|
|
public string err_msg { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class YBbaseInfo
|
|
|
|
|
{
|
|
|
|
|
public string psn_no { get; set; }
|
|
|
|
|
public string psn_cert_type { get; set; }
|
|
|
|
|
public string certno { get; set; }
|
|
|
|
|
public string psn_name { get; set; }
|
|
|
|
|
public string gend { get; set; }
|
|
|
|
|
public string naty { get; set; }
|
|
|
|
|
public string brdy { get; set; }
|
|
|
|
|
public string age { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class YBinsuInfo
|
|
|
|
|
{
|
|
|
|
|
public string balc { get; set; }
|
|
|
|
|
public string insutype { get; set; }
|
|
|
|
|
public string psn_type { get; set; }
|
|
|
|
|
public string psn_insu_stas { get; set; }
|
|
|
|
|
public string psn_insu_date { get; set; }
|
|
|
|
|
public string cvlserv_flag { get; set; }
|
|
|
|
|
public string insuplc_admdvs { get; set; }
|
|
|
|
|
public string emp_name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class YBoutput
|
|
|
|
|
{
|
|
|
|
|
public YBbaseInfo baseinfo { get; set; }
|
|
|
|
|
public List<YBinsuInfo> insuinfo { get; set; }
|
|
|
|
|
public List<YBBZInfo> feedetail { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class YBBZInfo
|
|
|
|
|
{
|
|
|
|
|
public string opsp_dise_code { get; set; }
|
|
|
|
|
public string opsp_dise_name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|