SGGL_JT/SUBQHSE/Model/Base_ProjectDto.cs

45 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
/// 项目
/// </summary>
public class Base_ProjectDto
{
/// <summary>
/// 项目名称
/// </summary>
public string ProjectName { get; set; }
/// <summary>
/// 项目属性GONGCHENG-工程SHIYE-实业
/// </summary>
public string ProjectAttribute { get; set; }
/// <summary>
/// 项目编号
/// </summary>
public string ProjectCode { get; set; }
/// <summary>
/// 项目简称
/// </summary>
public string ShortName { get; set; }
/// <summary>
/// 项目所属单位
/// </summary>
public string UnitId { get; set; }
/// <summary>
/// 项目状态1-在建2-停工3-竣工)
/// </summary>
public string ProjectState { get; set; }
}
}