123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Client.Model.AppModels.Result.Base
- {
- public class BasFaultMd
- {
- public int FAULT_ID { get; set; }
- public string NEWID { get; set; }
- public string FAULT_CODE { get; set; }
- public string FAULT_NAME { get; set; }
- public string DEV_TYPE_CODE { get; set; }
- public string DESCRIBE { get; set; }
- public int USED_FLAG { get; set; }
- public int DEL_FLAG { get; set; }
- public int CREATE_BY { get; set; }
- public string CreateCode { get; set; }
- public string CreateName { get; set; }
- public DateTime CREATE_TIME { get; set; }
- public int UPDATE_BY { get; set; }
- public string UpdateCode { get; set; }
- public string UpdateName { get; set; }
- public DateTime UPDATE_TIME { get; set; }
- public int DATA_VERSION { get; set; }
- public string REMARKS1 { get; set; }
- public string REMARKS2 { get; set; }
- public string REMARKS3 { get; set; }
- public string REMARKS4 { get; set; }
- public string REMARKS5 { get; set; }
- }
- }
|