28 lines
615 B
C#
28 lines
615 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 单位工程实体
|
|||
|
/// </summary>
|
|||
|
public class WBS_UnitWorkDto
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 单位工程编码
|
|||
|
/// </summary>
|
|||
|
public string UnitWorkCode { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 单位工程名称
|
|||
|
/// </summary>
|
|||
|
public string UnitWorkName { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 项目名称
|
|||
|
/// </summary>
|
|||
|
public string ProjectId { get; set; }
|
|||
|
}
|
|||
|
}
|