33 lines
1.2 KiB
C#
33 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace dccdc.Common
|
|
{
|
|
public class exportModel
|
|
{
|
|
public class sqhbcx2
|
|
{
|
|
public string 申请单号 { get; set; }
|
|
public DateTime? 申请时间 { get; set; }
|
|
public DateTime? 添加时间 { get; set; }
|
|
public string 申请人 { get; set; }
|
|
public string 科室名称 { get; set; }
|
|
public decimal? 金额 { get; set; }
|
|
public string 备注 { get; set; }
|
|
public string 合并类型 { get; set; }
|
|
//相关人员
|
|
public string 科室领导 { get; set; }
|
|
public DateTime? 科室审批时间 { get; set; }
|
|
public string 分管领导 { get; set; }
|
|
public DateTime? 分管审批时间 { get; set; }
|
|
public string 内审员 { get; set; }
|
|
public DateTime? 内审审批时间 { get; set; }
|
|
public string 备案人 { get; set; }
|
|
public DateTime? 备案审批时间 { get; set; }
|
|
public string 中心主任 { get; set; }
|
|
public DateTime? 中心审批时间 { get; set; }
|
|
}
|
|
}
|
|
} |