ShanxiKnowledgeBase/SXElectricalInspection/Assets/Adam/Scripts/Data/BiaoJIData.cs

34 lines
766 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.

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
//============================================================
//支持中文文件使用UTF-8编码
//@author YangHua
//@create 20230920
//@company QianHuo
//
//@description:
//============================================================
namespace BjData
{
[Serializable]
public class BiaoJIData
{
/// <summary>
/// 错误状态
/// </summary>
public string warningType;
public string oneWayAA;
public string oneWayAV;
public string AA;
public string BA;
public string CA;
public string AV;
public string BV;
public string CV;
public string N;
}
}