lg_backend/langguanApi/Model/Organized.cs

22 lines
513 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.

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; }
}
}