提交代码

This commit is contained in:
2025-03-07 11:05:48 +08:00
parent 39b67b8b4c
commit 9c4bc2154d
14 changed files with 889 additions and 12 deletions
+30
View File
@@ -0,0 +1,30 @@
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; }
}
}
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class DrawingItem
{
public string DrawingId { get; set; }
public string DrawingNo { get; set; }
}
}