31 lines
999 B
C#
31 lines
999 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class DayInputItem
|
|
{
|
|
public string DayInputId { get; set; }
|
|
public string ProjectId { get; set; }
|
|
public string BaseId { get; set; }
|
|
public string WorkSection { get; set; }
|
|
public string DrawingId { get; set; }
|
|
public string DrawingNo { get; set; }
|
|
public string DrawingName { get; set; }
|
|
public string Part { get; set; }
|
|
public string ProjectContent { get; set; }
|
|
public string Unit { get; set; }
|
|
public decimal? Amount { get; set; }
|
|
public string WorkTeam { get; set; }
|
|
public string WorkTeamId { get; set; }
|
|
public DateTime? Date { get; set; }
|
|
public string DateStr { get; set; }
|
|
public decimal? DayAmount { get; set; }
|
|
public string Url { get; set; }
|
|
public string CompileMan { get; set; }
|
|
}
|
|
}
|