tijian_jichuang/Code/Entities/DTO/dto_wjrs.cs
2025-02-20 11:54:48 +08:00

35 lines
744 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}