| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace com.steering.pss.ydm.entity
- {
- public class CarBillSourseEntity
- {
- private string judgeStoveNo;
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- private string batchNo;
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- private string batchGroudNo;
- public string BatchGroudNo
- {
- get { return batchGroudNo; }
- set { batchGroudNo = value; }
- }
- private string storageNo;
- public string StorageNo
- {
- get { return storageNo; }
- set { storageNo = value; }
- }
- private string actNum;
- public string ActNum
- {
- get { return actNum; }
- set { actNum = value; }
- }
- private string actWgt;
- public string ActWgt
- {
- get { return actWgt; }
- set { actWgt = value; }
- }
- private string locationNo;
- public string LocationNo
- {
- get { return locationNo; }
- set { locationNo = value; }
- }
- }
- }
|