35 lines
744 B
C#
35 lines
744 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Runtime.Serialization;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace SOH.Entities.DTO
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 合同未检人数,按分组group
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable()]
|
|||
|
|
[DataContract(IsReference = true)]
|
|||
|
|
public class dto_wjrs
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 合同分组编码
|
|||
|
|
/// </summary>
|
|||
|
|
[DataMember]
|
|||
|
|
public int htfzbm { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 合同分组名称
|
|||
|
|
/// </summary>
|
|||
|
|
[DataMember]
|
|||
|
|
public string htfzmc { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 未检人数
|
|||
|
|
/// </summary>
|
|||
|
|
[DataMember]
|
|||
|
|
public int wjrs { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|