31 lines
547 B
C#
31 lines
547 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
/// <summary>
|
|
/// 工单及工作票数据结构
|
|
/// </summary>
|
|
|
|
/// <summary>
|
|
/// 工作票
|
|
/// </summary>
|
|
[Serializable]
|
|
public class WorkTicket
|
|
{
|
|
public List<WorkTicketItem> workTicketItems = new List<WorkTicketItem> ();
|
|
}
|
|
[Serializable]
|
|
public class WorkTicketItem
|
|
{
|
|
public string schemeID;
|
|
public List<string> workTicketLabels = new List<string>();
|
|
}
|
|
/// <summary>
|
|
/// 工单
|
|
/// </summary>
|
|
[Serializable]
|
|
public class WorkOrder
|
|
{
|
|
|
|
}
|