xinjiang/SGGL/Model/APIItem/ProjectPersonAndSafeHour.cs

23 lines
571 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.APIItem
{
public class ProjectPersonAndSafeHour
{
public string ProjectId { get; set; }
public string ProjectName { get; set; }
public string ProjectCode { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public decimal? SafeHousCurrMonth { get; set; }
public decimal? SafeHous { get; set; }
public int? PersonTCC { get; set; }
public int? PersonOther { get; set; }
}
}