| 123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Core.LZMes.Client.UIM
- {
- class MoveCoil
- {
- private string fromYard = "";
- private string toYard = "";
- private string coilNo = "";
- public string getFromYard()
- {
- return this.fromYard;
- }
- public void setFromYard(string fromYard)
- {
- this.fromYard = fromYard;
- }
- public string getToYard()
- {
- return this.toYard;
- }
- public void setToYard(string toYard)
- {
- this.toYard = toYard;
- }
- public string getCoilNo()
- {
- return this.coilNo;
- }
- public void setCoilNo(string coilNo)
- {
- this.coilNo = coilNo;
- }
- }
- }
|