年度变更建库软件5.0版本
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.

81 lines
1.7 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kingo.PluginServiceInterface.Model
{
/// <summary>
/// 核查反馈意见
/// </summary>
[Serializable]
public class HCFKYJInfo
{
/// <summary>
/// 县级审核
/// </summary>
public XJSH XJSH { get; set; }
/// <summary>
/// 市级审核
/// </summary>
public CJSH CJSH { get; set; }
/// <summary>
/// 省级审核
/// </summary>
public SJSH SJSH { get; set; }
}
/// <summary>
/// 县级审核
/// </summary>
public class XJSH
{
/// <summary>
/// 审核结果
/// </summary>
public string SHJG { get; set; }
/// <summary>
/// 审核说明
/// </summary>
public string SHSM { get; set; }
}
/// <summary>
/// 市级审核
/// </summary>
public class CJSH
{
/// <summary>
/// 审核结果
/// </summary>
public string SHJG { get; set; }
/// <summary>
/// 审核说明
/// </summary>
public string SHSM { get; set; }
}
/// <summary>
/// 省级审核
/// </summary>
public class SJSH
{
/// <summary>
/// 审核结果
/// </summary>
public string SHJG { get; set; }
/// <summary>
/// 审核说明
/// </summary>
public string SHSM { get; set; }
/// <summary>
/// 审核时间
/// </summary>
public string SHSJ { get; set; }
/// <summary>
/// 审核备注
/// </summary>
public string SHBZ { get; set; }
}
}