| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- namespace Core.StlMes.Client.Judge.Models
- {
- public class QcmJudgeLockEntity
- {
- /**
- * 主键
- */
- private string lockId = "";
- public string LockId
- {
- get { return lockId; }
- set { lockId = value; }
- }
- /**
- * 工序代码(A\B\C\D.....)
- */
- private string processCode = "";
- public string ProcessCode
- {
- get { return processCode; }
- set { processCode = value; }
- }
- /**
- * 判定炉号
- */
- private string judgeStoveNo = "";
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- /**
- * 锁定原因
- */
- private string lockReason = "";
- public string LockReason
- {
- get { return lockReason; }
- set { lockReason = value; }
- }
- /**
- * 锁定时间
- */
- private string lockTime = "";
- public string LockTime
- {
- get { return lockTime; }
- set { lockTime = value; }
- }
- /**
- * 锁定人ID
- */
- private string lockUserId = "";
- public string LockUserId
- {
- get { return lockUserId; }
- set { lockUserId = value; }
- }
- /**
- * 解锁时间
- */
- private string unlockTime = "";
- public string UnlockTime
- {
- get { return unlockTime; }
- set { unlockTime = value; }
- }
- /**
- * 解锁人ID
- */
- private string unlockUserId = "";
- public string UnlockUserId
- {
- get { return unlockUserId; }
- set { unlockUserId = value; }
- }
- /**
- * 锁定工序代码
- */
- private string lockProcessCode = "";
- public string LockProcessCode
- {
- get { return lockProcessCode; }
- set { lockProcessCode = value; }
- }
- /**
- * 性能批号
- */
- private string batchNo = "";
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- /**
- * 锁定标志
- */
- private string lockFlag = "";
- public string LockFlag
- {
- get { return lockFlag; }
- set { lockFlag = value; }
- }
- private string orderNo = "";
- public string OrderNo
- {
- get { return orderNo; }
- set { orderNo = value; }
- }
- private string steelname = "";
- public string Steelname
- {
- get { return steelname; }
- set { steelname = value; }
- }
- private string gradename = "";
- public string Gradename
- {
- get { return gradename; }
- set { gradename = value; }
- }
- private string specName = "";
- public string SpecName
- {
- get { return specName; }
- set { specName = value; }
- }
- private string actCount = "";
- public string ActCount
- {
- get { return actCount; }
- set { actCount = value; }
- }
- private string actWeight = "";
- public string ActWeight
- {
- get { return actWeight; }
- set { actWeight = value; }
- }
- private string processDesc = "";
- public string ProcessDesc
- {
- get { return processDesc; }
- set { processDesc = value; }
- }
- private string lockName = "";
- public string LockName
- {
- get { return lockName; }
- set { lockName = value; }
- }
- private string unlockName = "";
- public string UnlockName
- {
- get { return unlockName; }
- set { unlockName = value; }
- }
- }
- }
|