| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace com.steering.mes.mcp.entity
- {
- public class VrpMilEntity
- {
- private string batchNo;
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- private int judgestoveNo;
- public int JudgestoveNo
- {
- get { return judgestoveNo; }
- set { judgestoveNo = value; }
- }
- private string proplanId;
- public string ProplanId
- {
- get { return proplanId; }
- set { proplanId = value; }
- }
- private string actmaterialName;
- public string ActmaterialName
- {
- get { return actmaterialName; }
- set { actmaterialName = value; }
- }
- private string proNum;
- public string ProNum
- {
- get { return proNum; }
- set { proNum = value; }
- }
- private string failNum;
- public string FailNum
- {
- get { return failNum; }
- set { failNum = value; }
- }
- private string liLun;
- public string LiLun
- {
- get { return liLun; }
- set { liLun = value; }
- }
- private string shiJi;
- public string ShiJi
- {
- get { return shiJi; }
- set { shiJi = value; }
- }
- private int chaZhi;
- public int ChaZhi
- {
- get { return chaZhi; }
- set { chaZhi = value; }
- }
- private string pCode;
- public string PCode
- {
- get { return pCode; }
- set { pCode = value; }
- }
- }
- }
|