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.
44 lines
1.0 KiB
44 lines
1.0 KiB
using System;
|
|
using System.Data;
|
|
using System.Web.Mvc.Html;
|
|
using QMFrameWork.Data.Attributes;
|
|
using QMFrameWork.WebUI;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
|
|
namespace QMAPP.FJC.Web.Models.Andon
|
|
{
|
|
///</summary>
|
|
/// 模块编号:
|
|
/// 作 用:呼叫记录
|
|
/// 作 者:周晓东
|
|
/// 编写日期:2017年11月03日
|
|
///</summary>
|
|
|
|
public class TempCallLogModel : QDGModel
|
|
{
|
|
|
|
///<summary>
|
|
///维修呼叫
|
|
///质量呼叫
|
|
///物料呼叫
|
|
///</summary>
|
|
[Description("呼叫类型")]
|
|
public string CALL_TYPE { get; set; }
|
|
|
|
[Description("设备")]
|
|
public string MACHINECODDE { get; set; }
|
|
public string MACHINECODDE_NAME { get; set; }
|
|
|
|
[Description("呼叫次数")]
|
|
public int CALL_COUNT { get; set; }
|
|
|
|
//[Description("读取设备表")]
|
|
public string isFirst { get; set; }
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|