60 lines
1.0 KiB
C#
60 lines
1.0 KiB
C#
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;
|
|
}
|
|
}
|
|
}
|