AreaParam.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. namespace StockStateAreaStockStateExport;
  3. class AreaParam{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.stock.state.export.vo.param.AreaParam";
  7. }
  8. private $stateId;
  9. public function setStateId($stateId){
  10. $this->params['stateId'] = $stateId;
  11. }
  12. public function getStateId(){
  13. return $this->stateId;
  14. }
  15. private $provinceId;
  16. public function setProvinceId($provinceId){
  17. $this->params['provinceId'] = $provinceId;
  18. }
  19. public function getProvinceId(){
  20. return $this->provinceId;
  21. }
  22. private $cityId;
  23. public function setCityId($cityId){
  24. $this->params['cityId'] = $cityId;
  25. }
  26. public function getCityId(){
  27. return $this->cityId;
  28. }
  29. private $countyId;
  30. public function setCountyId($countyId){
  31. $this->params['countyId'] = $countyId;
  32. }
  33. public function getCountyId(){
  34. return $this->countyId;
  35. }
  36. private $townId;
  37. public function setTownId($townId){
  38. $this->params['townId'] = $townId;
  39. }
  40. public function getTownId(){
  41. return $this->townId;
  42. }
  43. function getInstance(){
  44. return $this->params;
  45. }
  46. }
  47. ?>