tijian_tieying/web/dccdc.Models/DTO/CJDT.cs
2025-02-20 12:14:39 +08:00

29 lines
557 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models.DTO
{
/// <summary>
/// 采集动态
/// </summary>
public class CJDT
{
/// <summary>
/// 当时登记人数
/// </summary>
public int drdj { get; set; }
/// <summary>
/// 完成采集人数
/// </summary>
public int wcrs { get; set; }
/// <summary>
/// 需要采集人数
/// </summary>
public int xyrs { get; set; }
}
}