| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using Core.Mes.Client.Comm.Attribute;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.YdmBcPipeManage.Entity
- {
- class MatBcMEntity4 : MatBcMEntity1
- {
- private string reason1 = "";
- private string reason2 = "";
- private string reason3 = "";
- [Description("离线原因1")]
- [Nullable(true)]
- [DataLength(10)]
- public string Reason1
- {
- get { return reason1; }
- set { reason1 = value; }
- }
- [Description("离线原因2")]
- [Nullable(true)]
- [DataLength(10)]
- public string Reason2
- {
- get { return reason2; }
- set { reason2 = value; }
- }
- [Description("离线原因3")]
- [Nullable(true)]
- [DataLength(10)]
- public string Reason3
- {
- get { return reason3; }
- set { reason3 = value; }
- }
- }
- }
|