30 lines
623 B
C#
30 lines
623 B
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JY.Model
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 工位报警数据
|
||
|
|
/// </summary>
|
||
|
|
public class AbnormalVoice
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// ID
|
||
|
|
/// </summary>
|
||
|
|
public int ID { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 工位编码
|
||
|
|
/// </summary>
|
||
|
|
public string Code { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 播报内容
|
||
|
|
/// </summary>
|
||
|
|
public string Remark { get; set; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|