| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- namespace StockStateAreaStockStateExport;
- class AreaParam{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.stock.state.export.vo.param.AreaParam";
- }
-
- private $stateId;
-
- public function setStateId($stateId){
- $this->params['stateId'] = $stateId;
- }
- public function getStateId(){
- return $this->stateId;
- }
-
- private $provinceId;
-
- public function setProvinceId($provinceId){
- $this->params['provinceId'] = $provinceId;
- }
- public function getProvinceId(){
- return $this->provinceId;
- }
-
- private $cityId;
-
- public function setCityId($cityId){
- $this->params['cityId'] = $cityId;
- }
- public function getCityId(){
- return $this->cityId;
- }
-
- private $countyId;
-
- public function setCountyId($countyId){
- $this->params['countyId'] = $countyId;
- }
- public function getCountyId(){
- return $this->countyId;
- }
-
- private $townId;
-
- public function setTownId($townId){
- $this->params['townId'] = $townId;
- }
- public function getTownId(){
- return $this->townId;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|