32 lines
745 B
C#
32 lines
745 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Model
|
||
{
|
||
/// <summary>
|
||
/// 项目单位
|
||
/// </summary>
|
||
public class Base_UnitDto
|
||
{
|
||
/// <summary>
|
||
/// 单位代码(英文缩写,例:ZJZA)
|
||
/// </summary>
|
||
public string UnitCode { get; set; }
|
||
/// <summary>
|
||
/// 单位名称
|
||
/// </summary>
|
||
public string UnitName { get; set; }
|
||
/// <summary>
|
||
/// 归属项目名称
|
||
/// </summary>
|
||
public string DataSources { get; set; }
|
||
/// <summary>
|
||
/// 单位简称
|
||
/// </summary>
|
||
public string ShortUnitName { get; set; }
|
||
}
|
||
}
|