You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Threading.Tasks; |
|
|
|
namespace AX.FireTrainingSys.DTOs |
|
{ |
|
public struct Vector3 |
|
{ |
|
public float X { get; set; } |
|
public float Y { get; set; } |
|
public float Z { get; set; } |
|
|
|
public Vector3(float x, float y, float z) |
|
{ |
|
this.X = x; |
|
this.Y = y; |
|
this.Z = z; |
|
} |
|
} |
|
|
|
/// <summary> |
|
/// 组织机构。 |
|
/// </summary> |
|
public class OrganizationInfo |
|
{ |
|
/// <summary> |
|
/// 机构编号。 |
|
/// </summary> |
|
public string Id { get; set; } |
|
/// <summary> |
|
/// 机构名称。 |
|
/// </summary> |
|
public string Name { get; set; } |
|
/// <summary> |
|
/// 机构级别。 |
|
/// </summary> |
|
public int Level { get; set; } |
|
/// <summary> |
|
/// 顺序。 |
|
/// </summary> |
|
public int? Order { get; set; } |
|
/// <summary> |
|
/// 位置。 |
|
/// </summary> |
|
public Vector3 Position { get; set; } |
|
/// <summary> |
|
/// 父级机构编号。 |
|
/// </summary> |
|
public string ParentId { get; set; } |
|
} |
|
}
|
|
|