20240805 单位工程设置修改

This commit is contained in:
2024-08-05 16:16:22 +08:00
parent 6feffba060
commit 83340dd172
26 changed files with 652 additions and 921 deletions
+59
View File
@@ -0,0 +1,59 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
/// 单位工程
/// </summary>
public class UnitWork
{
/// <summary>
/// 主键
/// </summary>
public string UnitWorkId
{
get;
set;
}
/// <summary>
/// 单位工程编号
/// </summary>
public string SupUnitWorkCode
{
get;
set;
}
/// <summary>
/// 单位工程名称
/// </summary>
public string SupUnitWorkName
{
get;
set;
}
/// <summary>
/// 子单位工程编号
/// </summary>
public string UnitWorkCode
{
get;
set;
}
/// <summary>
/// 子单位工程名称
/// </summary>
public string UnitWorkName
{
get;
set;
}
}
}