26 lines
570 B
C#
26 lines
570 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.App.ServiceApp.ReSubmitManage.Request
|
|||
|
|
{
|
|||
|
|
public class ReSubmitReq
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 案件原始编号
|
|||
|
|
/// </summary>
|
|||
|
|
public string originalcaseno { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 备注
|
|||
|
|
/// </summary>
|
|||
|
|
public string remark { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 专题id
|
|||
|
|
/// </summary>
|
|||
|
|
public string subjectkey { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|