SGGL_JT/SUBQHSE/Model/APIItem/Base_UnitDto.cs

32 lines
745 B
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_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; }
}
}