22 lines
513 B
C#
22 lines
513 B
C#
|
|
namespace langguanApi.Model
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Organized 有组织
|
|||
|
|
/// </summary>
|
|||
|
|
public class Organized : BaseModel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 1,有组织;2,无组织
|
|||
|
|
/// </summary>
|
|||
|
|
public int OrganizedType { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 排序 大在前,小在后
|
|||
|
|
/// </summary>
|
|||
|
|
public int Order { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|