38 lines
613 B
C#
38 lines
613 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Model
|
|||
|
{
|
|||
|
public class UnitInfoItem
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 单位ID
|
|||
|
/// </summary>
|
|||
|
public string UnitId
|
|||
|
{
|
|||
|
get;
|
|||
|
set;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 单位代号
|
|||
|
/// </summary>
|
|||
|
public string UnitCode
|
|||
|
{
|
|||
|
get;
|
|||
|
set;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 单位名称
|
|||
|
/// </summary>
|
|||
|
public string UnitName
|
|||
|
{
|
|||
|
get;
|
|||
|
set;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|