| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Core.LgMes.Server.lgClassModel
- {
- [Serializable]
- public class STL_COMMON_SAMPLING
- {
- public String HEATPROCESSNO = "";
- public String SAMPLINGID = "";
- public String SAMPLINGNAME = "";
- public String HEATNO = "";
- public String STATIONCODE = "";
- public String DISPOSALTIME = "";
- public String SAMPLINGDEPICT = "";
- public String SAMPLINGVALUE = "";
- public String SAMPLINGDATE = "";
- public STL_COMMON_SAMPLING()
- {
- }
- public STL_COMMON_SAMPLING(String heatprocessno, String samplingid,
- String samplingname, String heatno, String stationcode,
- String disposaltime, String samplingdepict, String samplingvalue,
- String samplingdate)
- {
- this.HEATPROCESSNO = heatprocessno;
- this.SAMPLINGID = samplingid;
- this.SAMPLINGNAME = samplingname;
- this.HEATNO = heatno;
- this.STATIONCODE = stationcode;
- this.DISPOSALTIME = disposaltime;
- this.SAMPLINGDEPICT = samplingdepict;
- this.SAMPLINGVALUE = samplingvalue;
- this.SAMPLINGDATE = samplingdate;
- }
- public String getHeatprocessno()
- {
- return this.HEATPROCESSNO;
- }
- public void setHeatprocessno(String heatprocessno)
- {
- this.HEATPROCESSNO = heatprocessno;
- }
- public String getSamplingid()
- {
- return this.SAMPLINGID;
- }
- public void setSamplingid(String samplingid)
- {
- this.SAMPLINGID = samplingid;
- }
- public String getSamplingname()
- {
- return this.SAMPLINGNAME;
- }
- public void setSamplingname(String samplingname)
- {
- this.SAMPLINGNAME = samplingname;
- }
- public String getHeatno()
- {
- return this.HEATNO;
- }
- public void setHeatno(String heatno)
- {
- this.HEATNO = heatno;
- }
- public String getStationcode()
- {
- return this.STATIONCODE;
- }
- public void setStationcode(String stationcode)
- {
- this.STATIONCODE = stationcode;
- }
- public String getDisposaltime()
- {
- return this.DISPOSALTIME;
- }
- public void setDisposaltime(String disposaltime)
- {
- this.DISPOSALTIME = disposaltime;
- }
- public String getSamplingdepict()
- {
- return this.SAMPLINGDEPICT;
- }
- public void setSamplingdepict(String samplingdepict)
- {
- this.SAMPLINGDEPICT = samplingdepict;
- }
- public String getSamplingvalue()
- {
- return this.SAMPLINGVALUE;
- }
- public void setSamplingvalue(String samplingvalue)
- {
- this.SAMPLINGVALUE = samplingvalue;
- }
- public String getSamplingdate()
- {
- return this.SAMPLINGDATE;
- }
- public void setSamplingdate(String samplingdate)
- {
- this.SAMPLINGDATE = samplingdate;
- }
- public void Copy(ref STL_COMMON_SAMPLING par)
- {
- //HEATPROCESSNO = par.HEATPROCESSNO;
- //SAMPLINGID = par.SAMPLINGID;
- //SAMPLINGNAME = par.SAMPLINGNAME;
- //HEATNO = par.HEATNO;
- //STATIONCODE = par.STATIONCODE;
- //DISPOSALTIME = par.DISPOSALTIME;
- //SAMPLINGDEPICT = par.SAMPLINGDEPICT;
- //SAMPLINGVALUE = par.SAMPLINGVALUE;
- //SAMPLINGDATE = par.SAMPLINGDATE;
- }
- }
- }
|