No Description

WxPay.Data.php 64KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985
  1. <?php
  2. /**
  3. * 2015-06-29 修复签名问题
  4. **/
  5. require_once "WxPay.Config.php";
  6. require_once "WxPay.Exception.php";
  7. /**
  8. *
  9. * 数据对象基础类,该类中定义数据类最基本的行为,包括:
  10. * 计算/设置/获取签名、输出xml格式的参数、从xml读取数据对象等
  11. * @author widyhu
  12. *
  13. */
  14. class WxPayDataBase
  15. {
  16. protected $values = array();
  17. /**
  18. * 设置签名,详见签名生成算法
  19. * @param string $value
  20. **/
  21. public function SetSign()
  22. {
  23. $sign = $this->MakeSign();
  24. $this->values['sign'] = $sign;
  25. return $sign;
  26. }
  27. /**
  28. * 获取签名,详见签名生成算法的值
  29. * @return 值
  30. **/
  31. public function GetSign()
  32. {
  33. return $this->values['sign'];
  34. }
  35. /**
  36. * 判断签名,详见签名生成算法是否存在
  37. * @return true 或 false
  38. **/
  39. public function IsSignSet()
  40. {
  41. return array_key_exists('sign', $this->values);
  42. }
  43. /**
  44. * 输出xml字符
  45. * @throws WxPayException
  46. **/
  47. public function ToXml()
  48. {
  49. if(!is_array($this->values)
  50. || count($this->values) <= 0)
  51. {
  52. throw new WxPayException("数组数据异常!");
  53. }
  54. $xml = "<xml>";
  55. foreach ($this->values as $key=>$val)
  56. {
  57. if (is_numeric($val)){
  58. $xml.="<".$key.">".$val."</".$key.">";
  59. }else{
  60. $xml.="<".$key."><![CDATA[".$val."]]></".$key.">";
  61. }
  62. }
  63. $xml.="</xml>";
  64. return $xml;
  65. }
  66. /**
  67. * 将xml转为array
  68. * @param string $xml
  69. * @throws WxPayException
  70. */
  71. public function FromXml($xml)
  72. {
  73. if(!$xml){
  74. throw new WxPayException("xml数据异常!");
  75. }
  76. //将XML转为array
  77. //禁止引用外部xml实体
  78. libxml_disable_entity_loader(true);
  79. $this->values = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
  80. return $this->values;
  81. }
  82. /**
  83. * 格式化参数格式化成url参数
  84. */
  85. public function ToUrlParams()
  86. {
  87. $buff = "";
  88. foreach ($this->values as $k => $v)
  89. {
  90. if($k != "sign" && $v != "" && !is_array($v)){
  91. $buff .= $k . "=" . $v . "&";
  92. }
  93. }
  94. $buff = trim($buff, "&");
  95. return $buff;
  96. }
  97. /**
  98. * 生成签名
  99. * @return 签名,本函数不覆盖sign成员变量,如要设置签名需要调用SetSign方法赋值
  100. */
  101. public function MakeSign()
  102. {
  103. //签名步骤一:按字典序排序参数
  104. ksort($this->values);
  105. $string = $this->ToUrlParams();
  106. //签名步骤二:在string后加入KEY
  107. $string = $string . "&key=".WxPayConfig::KEY;
  108. //签名步骤三:MD5加密
  109. $string = md5($string);
  110. //签名步骤四:所有字符转为大写
  111. $result = strtoupper($string);
  112. return $result;
  113. }
  114. /**
  115. * 获取设置的值
  116. */
  117. public function GetValues()
  118. {
  119. return $this->values;
  120. }
  121. }
  122. /**
  123. *
  124. * 接口调用结果类
  125. * @author widyhu
  126. *
  127. */
  128. class WxPayResults extends WxPayDataBase
  129. {
  130. /**
  131. *
  132. * 检测签名
  133. */
  134. public function CheckSign()
  135. {
  136. //fix异常
  137. if(!$this->IsSignSet()){
  138. throw new WxPayException("签名错误!");
  139. }
  140. $sign = $this->MakeSign();
  141. if($this->GetSign() == $sign){
  142. return true;
  143. }
  144. throw new WxPayException("签名错误!");
  145. }
  146. /**
  147. *
  148. * 使用数组初始化
  149. * @param array $array
  150. */
  151. public function FromArray($array)
  152. {
  153. $this->values = $array;
  154. }
  155. /**
  156. *
  157. * 使用数组初始化对象
  158. * @param array $array
  159. * @param 是否检测签名 $noCheckSign
  160. */
  161. public static function InitFromArray($array, $noCheckSign = false)
  162. {
  163. $obj = new self();
  164. $obj->FromArray($array);
  165. if($noCheckSign == false){
  166. $obj->CheckSign();
  167. }
  168. return $obj;
  169. }
  170. /**
  171. *
  172. * 设置参数
  173. * @param string $key
  174. * @param string $value
  175. */
  176. public function SetData($key, $value)
  177. {
  178. $this->values[$key] = $value;
  179. }
  180. /**
  181. * 将xml转为array
  182. * @param string $xml
  183. * @throws WxPayException
  184. */
  185. public static function Init($xml)
  186. {
  187. $obj = new self();
  188. $obj->FromXml($xml);
  189. //fix bug 2015-06-29
  190. if($obj->values['return_code'] != 'SUCCESS'){
  191. return $obj->GetValues();
  192. }
  193. $obj->CheckSign();
  194. return $obj->GetValues();
  195. }
  196. }
  197. /**
  198. *
  199. * 回调基础类
  200. * @author widyhu
  201. *
  202. */
  203. class WxPayNotifyReply extends WxPayDataBase
  204. {
  205. /**
  206. *
  207. * 设置错误码 FAIL 或者 SUCCESS
  208. * @param string
  209. */
  210. public function SetReturn_code($return_code)
  211. {
  212. $this->values['return_code'] = $return_code;
  213. }
  214. /**
  215. *
  216. * 获取错误码 FAIL 或者 SUCCESS
  217. * @return string $return_code
  218. */
  219. public function GetReturn_code()
  220. {
  221. return $this->values['return_code'];
  222. }
  223. /**
  224. *
  225. * 设置错误信息
  226. * @param string $return_code
  227. */
  228. public function SetReturn_msg($return_msg)
  229. {
  230. $this->values['return_msg'] = $return_msg;
  231. }
  232. /**
  233. *
  234. * 获取错误信息
  235. * @return string
  236. */
  237. public function GetReturn_msg()
  238. {
  239. return $this->values['return_msg'];
  240. }
  241. /**
  242. *
  243. * 设置返回参数
  244. * @param string $key
  245. * @param string $value
  246. */
  247. public function SetData($key, $value)
  248. {
  249. $this->values[$key] = $value;
  250. }
  251. }
  252. /**
  253. *
  254. * 统一下单输入对象
  255. * @author widyhu
  256. *
  257. */
  258. class WxPayUnifiedOrder extends WxPayDataBase
  259. {
  260. /**
  261. * 设置微信分配的公众账号ID
  262. * @param string $value
  263. **/
  264. public function SetAppid($value)
  265. {
  266. $this->values['appid'] = $value;
  267. }
  268. /**
  269. * 获取微信分配的公众账号ID的值
  270. * @return 值
  271. **/
  272. public function GetAppid()
  273. {
  274. return $this->values['appid'];
  275. }
  276. /**
  277. * 判断微信分配的公众账号ID是否存在
  278. * @return true 或 false
  279. **/
  280. public function IsAppidSet()
  281. {
  282. return array_key_exists('appid', $this->values);
  283. }
  284. /**
  285. * 设置微信支付分配的商户号
  286. * @param string $value
  287. **/
  288. public function SetMch_id($value)
  289. {
  290. $this->values['mch_id'] = $value;
  291. }
  292. /**
  293. * 获取微信支付分配的商户号的值
  294. * @return 值
  295. **/
  296. public function GetMch_id()
  297. {
  298. return $this->values['mch_id'];
  299. }
  300. /**
  301. * 判断微信支付分配的商户号是否存在
  302. * @return true 或 false
  303. **/
  304. public function IsMch_idSet()
  305. {
  306. return array_key_exists('mch_id', $this->values);
  307. }
  308. /**
  309. * 设置微信支付分配的终端设备号,商户自定义
  310. * @param string $value
  311. **/
  312. public function SetDevice_info($value)
  313. {
  314. $this->values['device_info'] = $value;
  315. }
  316. /**
  317. * 获取微信支付分配的终端设备号,商户自定义的值
  318. * @return 值
  319. **/
  320. public function GetDevice_info()
  321. {
  322. return $this->values['device_info'];
  323. }
  324. /**
  325. * 判断微信支付分配的终端设备号,商户自定义是否存在
  326. * @return true 或 false
  327. **/
  328. public function IsDevice_infoSet()
  329. {
  330. return array_key_exists('device_info', $this->values);
  331. }
  332. /**
  333. * 设置随机字符串,不长于32位。推荐随机数生成算法
  334. * @param string $value
  335. **/
  336. public function SetNonce_str($value)
  337. {
  338. $this->values['nonce_str'] = $value;
  339. }
  340. /**
  341. * 获取随机字符串,不长于32位。推荐随机数生成算法的值
  342. * @return 值
  343. **/
  344. public function GetNonce_str()
  345. {
  346. return $this->values['nonce_str'];
  347. }
  348. /**
  349. * 判断随机字符串,不长于32位。推荐随机数生成算法是否存在
  350. * @return true 或 false
  351. **/
  352. public function IsNonce_strSet()
  353. {
  354. return array_key_exists('nonce_str', $this->values);
  355. }
  356. /**
  357. * 设置商品或支付单简要描述
  358. * @param string $value
  359. **/
  360. public function SetBody($value)
  361. {
  362. $this->values['body'] = $value;
  363. }
  364. /**
  365. * 获取商品或支付单简要描述的值
  366. * @return 值
  367. **/
  368. public function GetBody()
  369. {
  370. return $this->values['body'];
  371. }
  372. /**
  373. * 判断商品或支付单简要描述是否存在
  374. * @return true 或 false
  375. **/
  376. public function IsBodySet()
  377. {
  378. return array_key_exists('body', $this->values);
  379. }
  380. /**
  381. * 设置商品名称明细列表
  382. * @param string $value
  383. **/
  384. public function SetDetail($value)
  385. {
  386. $this->values['detail'] = $value;
  387. }
  388. /**
  389. * 获取商品名称明细列表的值
  390. * @return 值
  391. **/
  392. public function GetDetail()
  393. {
  394. return $this->values['detail'];
  395. }
  396. /**
  397. * 判断商品名称明细列表是否存在
  398. * @return true 或 false
  399. **/
  400. public function IsDetailSet()
  401. {
  402. return array_key_exists('detail', $this->values);
  403. }
  404. /**
  405. * 设置附加数据,在查询API和支付通知中原样返回,该字段主要用于商户携带订单的自定义数据
  406. * @param string $value
  407. **/
  408. public function SetAttach($value)
  409. {
  410. $this->values['attach'] = $value;
  411. }
  412. /**
  413. * 获取附加数据,在查询API和支付通知中原样返回,该字段主要用于商户携带订单的自定义数据的值
  414. * @return 值
  415. **/
  416. public function GetAttach()
  417. {
  418. return $this->values['attach'];
  419. }
  420. /**
  421. * 判断附加数据,在查询API和支付通知中原样返回,该字段主要用于商户携带订单的自定义数据是否存在
  422. * @return true 或 false
  423. **/
  424. public function IsAttachSet()
  425. {
  426. return array_key_exists('attach', $this->values);
  427. }
  428. /**
  429. * 设置商户系统内部的订单号,32个字符内、可包含字母, 其他说明见商户订单号
  430. * @param string $value
  431. **/
  432. public function SetOut_trade_no($value)
  433. {
  434. $this->values['out_trade_no'] = $value;
  435. }
  436. /**
  437. * 获取商户系统内部的订单号,32个字符内、可包含字母, 其他说明见商户订单号的值
  438. * @return 值
  439. **/
  440. public function GetOut_trade_no()
  441. {
  442. return $this->values['out_trade_no'];
  443. }
  444. /**
  445. * 判断商户系统内部的订单号,32个字符内、可包含字母, 其他说明见商户订单号是否存在
  446. * @return true 或 false
  447. **/
  448. public function IsOut_trade_noSet()
  449. {
  450. return array_key_exists('out_trade_no', $this->values);
  451. }
  452. /**
  453. * 设置符合ISO 4217标准的三位字母代码,默认人民币:CNY,其他值列表详见货币类型
  454. * @param string $value
  455. **/
  456. public function SetFee_type($value)
  457. {
  458. $this->values['fee_type'] = $value;
  459. }
  460. /**
  461. * 获取符合ISO 4217标准的三位字母代码,默认人民币:CNY,其他值列表详见货币类型的值
  462. * @return 值
  463. **/
  464. public function GetFee_type()
  465. {
  466. return $this->values['fee_type'];
  467. }
  468. /**
  469. * 判断符合ISO 4217标准的三位字母代码,默认人民币:CNY,其他值列表详见货币类型是否存在
  470. * @return true 或 false
  471. **/
  472. public function IsFee_typeSet()
  473. {
  474. return array_key_exists('fee_type', $this->values);
  475. }
  476. /**
  477. * 设置订单总金额,只能为整数,详见支付金额
  478. * @param string $value
  479. **/
  480. public function SetTotal_fee($value)
  481. {
  482. $this->values['total_fee'] = $value;
  483. }
  484. /**
  485. * 获取订单总金额,只能为整数,详见支付金额的值
  486. * @return 值
  487. **/
  488. public function GetTotal_fee()
  489. {
  490. return $this->values['total_fee'];
  491. }
  492. /**
  493. * 判断订单总金额,只能为整数,详见支付金额是否存在
  494. * @return true 或 false
  495. **/
  496. public function IsTotal_feeSet()
  497. {
  498. return array_key_exists('total_fee', $this->values);
  499. }
  500. /**
  501. * 设置APP和网页支付提交用户端ip,Native支付填调用微信支付API的机器IP。
  502. * @param string $value
  503. **/
  504. public function SetSpbill_create_ip($value)
  505. {
  506. $this->values['spbill_create_ip'] = $value;
  507. }
  508. /**
  509. * 获取APP和网页支付提交用户端ip,Native支付填调用微信支付API的机器IP。的值
  510. * @return 值
  511. **/
  512. public function GetSpbill_create_ip()
  513. {
  514. return $this->values['spbill_create_ip'];
  515. }
  516. /**
  517. * 判断APP和网页支付提交用户端ip,Native支付填调用微信支付API的机器IP。是否存在
  518. * @return true 或 false
  519. **/
  520. public function IsSpbill_create_ipSet()
  521. {
  522. return array_key_exists('spbill_create_ip', $this->values);
  523. }
  524. /**
  525. * 设置订单生成时间,格式为yyyyMMddHHmmss,如2009年12月25日9点10分10秒表示为20091225091010。其他详见时间规则
  526. * @param string $value
  527. **/
  528. public function SetTime_start($value)
  529. {
  530. $this->values['time_start'] = $value;
  531. }
  532. /**
  533. * 获取订单生成时间,格式为yyyyMMddHHmmss,如2009年12月25日9点10分10秒表示为20091225091010。其他详见时间规则的值
  534. * @return 值
  535. **/
  536. public function GetTime_start()
  537. {
  538. return $this->values['time_start'];
  539. }
  540. /**
  541. * 判断订单生成时间,格式为yyyyMMddHHmmss,如2009年12月25日9点10分10秒表示为20091225091010。其他详见时间规则是否存在
  542. * @return true 或 false
  543. **/
  544. public function IsTime_startSet()
  545. {
  546. return array_key_exists('time_start', $this->values);
  547. }
  548. /**
  549. * 设置订单失效时间,格式为yyyyMMddHHmmss,如2009年12月27日9点10分10秒表示为20091227091010。其他详见时间规则
  550. * @param string $value
  551. **/
  552. public function SetTime_expire($value)
  553. {
  554. $this->values['time_expire'] = $value;
  555. }
  556. /**
  557. * 获取订单失效时间,格式为yyyyMMddHHmmss,如2009年12月27日9点10分10秒表示为20091227091010。其他详见时间规则的值
  558. * @return 值
  559. **/
  560. public function GetTime_expire()
  561. {
  562. return $this->values['time_expire'];
  563. }
  564. /**
  565. * 判断订单失效时间,格式为yyyyMMddHHmmss,如2009年12月27日9点10分10秒表示为20091227091010。其他详见时间规则是否存在
  566. * @return true 或 false
  567. **/
  568. public function IsTime_expireSet()
  569. {
  570. return array_key_exists('time_expire', $this->values);
  571. }
  572. /**
  573. * 设置商品标记,代金券或立减优惠功能的参数,说明详见代金券或立减优惠
  574. * @param string $value
  575. **/
  576. public function SetGoods_tag($value)
  577. {
  578. $this->values['goods_tag'] = $value;
  579. }
  580. /**
  581. * 获取商品标记,代金券或立减优惠功能的参数,说明详见代金券或立减优惠的值
  582. * @return 值
  583. **/
  584. public function GetGoods_tag()
  585. {
  586. return $this->values['goods_tag'];
  587. }
  588. /**
  589. * 判断商品标记,代金券或立减优惠功能的参数,说明详见代金券或立减优惠是否存在
  590. * @return true 或 false
  591. **/
  592. public function IsGoods_tagSet()
  593. {
  594. return array_key_exists('goods_tag', $this->values);
  595. }
  596. /**
  597. * 设置接收微信支付异步通知回调地址
  598. * @param string $value
  599. **/
  600. public function SetNotify_url($value)
  601. {
  602. $this->values['notify_url'] = $value;
  603. }
  604. /**
  605. * 获取接收微信支付异步通知回调地址的值
  606. * @return 值
  607. **/
  608. public function GetNotify_url()
  609. {
  610. return $this->values['notify_url'];
  611. }
  612. /**
  613. * 判断接收微信支付异步通知回调地址是否存在
  614. * @return true 或 false
  615. **/
  616. public function IsNotify_urlSet()
  617. {
  618. return array_key_exists('notify_url', $this->values);
  619. }
  620. /**
  621. * 设置取值如下:JSAPI,NATIVE,APP,详细说明见参数规定
  622. * @param string $value
  623. **/
  624. public function SetTrade_type($value)
  625. {
  626. $this->values['trade_type'] = $value;
  627. }
  628. /**
  629. * 获取取值如下:JSAPI,NATIVE,APP,详细说明见参数规定的值
  630. * @return 值
  631. **/
  632. public function GetTrade_type()
  633. {
  634. return $this->values['trade_type'];
  635. }
  636. /**
  637. * 判断取值如下:JSAPI,NATIVE,APP,详细说明见参数规定是否存在
  638. * @return true 或 false
  639. **/
  640. public function IsTrade_typeSet()
  641. {
  642. return array_key_exists('trade_type', $this->values);
  643. }
  644. /**
  645. * 设置trade_type=NATIVE,此参数必传。此id为二维码中包含的商品ID,商户自行定义。
  646. * @param string $value
  647. **/
  648. public function SetProduct_id($value)
  649. {
  650. $this->values['product_id'] = $value;
  651. }
  652. /**
  653. * 获取trade_type=NATIVE,此参数必传。此id为二维码中包含的商品ID,商户自行定义。的值
  654. * @return 值
  655. **/
  656. public function GetProduct_id()
  657. {
  658. return $this->values['product_id'];
  659. }
  660. /**
  661. * 判断trade_type=NATIVE,此参数必传。此id为二维码中包含的商品ID,商户自行定义。是否存在
  662. * @return true 或 false
  663. **/
  664. public function IsProduct_idSet()
  665. {
  666. return array_key_exists('product_id', $this->values);
  667. }
  668. /**
  669. * 设置trade_type=JSAPI,此参数必传,用户在商户appid下的唯一标识。下单前需要调用【网页授权获取用户信息】接口获取到用户的Openid。
  670. * @param string $value
  671. **/
  672. public function SetOpenid($value)
  673. {
  674. $this->values['openid'] = $value;
  675. }
  676. /**
  677. * 获取trade_type=JSAPI,此参数必传,用户在商户appid下的唯一标识。下单前需要调用【网页授权获取用户信息】接口获取到用户的Openid。 的值
  678. * @return 值
  679. **/
  680. public function GetOpenid()
  681. {
  682. return $this->values['openid'];
  683. }
  684. /**
  685. * 判断trade_type=JSAPI,此参数必传,用户在商户appid下的唯一标识。下单前需要调用【网页授权获取用户信息】接口获取到用户的Openid。 是否存在
  686. * @return true 或 false
  687. **/
  688. public function IsOpenidSet()
  689. {
  690. return array_key_exists('openid', $this->values);
  691. }
  692. }
  693. /**
  694. *
  695. * 订单查询输入对象
  696. * @author widyhu
  697. *
  698. */
  699. class WxPayOrderQuery extends WxPayDataBase
  700. {
  701. /**
  702. * 设置微信分配的公众账号ID
  703. * @param string $value
  704. **/
  705. public function SetAppid($value)
  706. {
  707. $this->values['appid'] = $value;
  708. }
  709. /**
  710. * 获取微信分配的公众账号ID的值
  711. * @return 值
  712. **/
  713. public function GetAppid()
  714. {
  715. return $this->values['appid'];
  716. }
  717. /**
  718. * 判断微信分配的公众账号ID是否存在
  719. * @return true 或 false
  720. **/
  721. public function IsAppidSet()
  722. {
  723. return array_key_exists('appid', $this->values);
  724. }
  725. /**
  726. * 设置微信支付分配的商户号
  727. * @param string $value
  728. **/
  729. public function SetMch_id($value)
  730. {
  731. $this->values['mch_id'] = $value;
  732. }
  733. /**
  734. * 获取微信支付分配的商户号的值
  735. * @return 值
  736. **/
  737. public function GetMch_id()
  738. {
  739. return $this->values['mch_id'];
  740. }
  741. /**
  742. * 判断微信支付分配的商户号是否存在
  743. * @return true 或 false
  744. **/
  745. public function IsMch_idSet()
  746. {
  747. return array_key_exists('mch_id', $this->values);
  748. }
  749. /**
  750. * 设置微信的订单号,优先使用
  751. * @param string $value
  752. **/
  753. public function SetTransaction_id($value)
  754. {
  755. $this->values['transaction_id'] = $value;
  756. }
  757. /**
  758. * 获取微信的订单号,优先使用的值
  759. * @return 值
  760. **/
  761. public function GetTransaction_id()
  762. {
  763. return $this->values['transaction_id'];
  764. }
  765. /**
  766. * 判断微信的订单号,优先使用是否存在
  767. * @return true 或 false
  768. **/
  769. public function IsTransaction_idSet()
  770. {
  771. return array_key_exists('transaction_id', $this->values);
  772. }
  773. /**
  774. * 设置商户系统内部的订单号,当没提供transaction_id时需要传这个。
  775. * @param string $value
  776. **/
  777. public function SetOut_trade_no($value)
  778. {
  779. $this->values['out_trade_no'] = $value;
  780. }
  781. /**
  782. * 获取商户系统内部的订单号,当没提供transaction_id时需要传这个。的值
  783. * @return 值
  784. **/
  785. public function GetOut_trade_no()
  786. {
  787. return $this->values['out_trade_no'];
  788. }
  789. /**
  790. * 判断商户系统内部的订单号,当没提供transaction_id时需要传这个。是否存在
  791. * @return true 或 false
  792. **/
  793. public function IsOut_trade_noSet()
  794. {
  795. return array_key_exists('out_trade_no', $this->values);
  796. }
  797. /**
  798. * 设置随机字符串,不长于32位。推荐随机数生成算法
  799. * @param string $value
  800. **/
  801. public function SetNonce_str($value)
  802. {
  803. $this->values['nonce_str'] = $value;
  804. }
  805. /**
  806. * 获取随机字符串,不长于32位。推荐随机数生成算法的值
  807. * @return 值
  808. **/
  809. public function GetNonce_str()
  810. {
  811. return $this->values['nonce_str'];
  812. }
  813. /**
  814. * 判断随机字符串,不长于32位。推荐随机数生成算法是否存在
  815. * @return true 或 false
  816. **/
  817. public function IsNonce_strSet()
  818. {
  819. return array_key_exists('nonce_str', $this->values);
  820. }
  821. }
  822. /**
  823. *
  824. * 关闭订单输入对象
  825. * @author widyhu
  826. *
  827. */
  828. class WxPayCloseOrder extends WxPayDataBase
  829. {
  830. /**
  831. * 设置微信分配的公众账号ID
  832. * @param string $value
  833. **/
  834. public function SetAppid($value)
  835. {
  836. $this->values['appid'] = $value;
  837. }
  838. /**
  839. * 获取微信分配的公众账号ID的值
  840. * @return 值
  841. **/
  842. public function GetAppid()
  843. {
  844. return $this->values['appid'];
  845. }
  846. /**
  847. * 判断微信分配的公众账号ID是否存在
  848. * @return true 或 false
  849. **/
  850. public function IsAppidSet()
  851. {
  852. return array_key_exists('appid', $this->values);
  853. }
  854. /**
  855. * 设置微信支付分配的商户号
  856. * @param string $value
  857. **/
  858. public function SetMch_id($value)
  859. {
  860. $this->values['mch_id'] = $value;
  861. }
  862. /**
  863. * 获取微信支付分配的商户号的值
  864. * @return 值
  865. **/
  866. public function GetMch_id()
  867. {
  868. return $this->values['mch_id'];
  869. }
  870. /**
  871. * 判断微信支付分配的商户号是否存在
  872. * @return true 或 false
  873. **/
  874. public function IsMch_idSet()
  875. {
  876. return array_key_exists('mch_id', $this->values);
  877. }
  878. /**
  879. * 设置商户系统内部的订单号
  880. * @param string $value
  881. **/
  882. public function SetOut_trade_no($value)
  883. {
  884. $this->values['out_trade_no'] = $value;
  885. }
  886. /**
  887. * 获取商户系统内部的订单号的值
  888. * @return 值
  889. **/
  890. public function GetOut_trade_no()
  891. {
  892. return $this->values['out_trade_no'];
  893. }
  894. /**
  895. * 判断商户系统内部的订单号是否存在
  896. * @return true 或 false
  897. **/
  898. public function IsOut_trade_noSet()
  899. {
  900. return array_key_exists('out_trade_no', $this->values);
  901. }
  902. /**
  903. * 设置商户系统内部的订单号,32个字符内、可包含字母, 其他说明见商户订单号
  904. * @param string $value
  905. **/
  906. public function SetNonce_str($value)
  907. {
  908. $this->values['nonce_str'] = $value;
  909. }
  910. /**
  911. * 获取商户系统内部的订单号,32个字符内、可包含字母, 其他说明见商户订单号的值
  912. * @return 值
  913. **/
  914. public function GetNonce_str()
  915. {
  916. return $this->values['nonce_str'];
  917. }
  918. /**
  919. * 判断商户系统内部的订单号,32个字符内、可包含字母, 其他说明见商户订单号是否存在
  920. * @return true 或 false
  921. **/
  922. public function IsNonce_strSet()
  923. {
  924. return array_key_exists('nonce_str', $this->values);
  925. }
  926. }
  927. /**
  928. *
  929. * 提交退款输入对象
  930. * @author widyhu
  931. *
  932. */
  933. class WxPayRefund extends WxPayDataBase
  934. {
  935. /**
  936. * 设置微信分配的公众账号ID
  937. * @param string $value
  938. **/
  939. public function SetAppid($value)
  940. {
  941. $this->values['appid'] = $value;
  942. }
  943. /**
  944. * 获取微信分配的公众账号ID的值
  945. * @return 值
  946. **/
  947. public function GetAppid()
  948. {
  949. return $this->values['appid'];
  950. }
  951. /**
  952. * 判断微信分配的公众账号ID是否存在
  953. * @return true 或 false
  954. **/
  955. public function IsAppidSet()
  956. {
  957. return array_key_exists('appid', $this->values);
  958. }
  959. /**
  960. * 设置微信支付分配的商户号
  961. * @param string $value
  962. **/
  963. public function SetMch_id($value)
  964. {
  965. $this->values['mch_id'] = $value;
  966. }
  967. /**
  968. * 获取微信支付分配的商户号的值
  969. * @return 值
  970. **/
  971. public function GetMch_id()
  972. {
  973. return $this->values['mch_id'];
  974. }
  975. /**
  976. * 判断微信支付分配的商户号是否存在
  977. * @return true 或 false
  978. **/
  979. public function IsMch_idSet()
  980. {
  981. return array_key_exists('mch_id', $this->values);
  982. }
  983. /**
  984. * 设置微信支付分配的终端设备号,与下单一致
  985. * @param string $value
  986. **/
  987. public function SetDevice_info($value)
  988. {
  989. $this->values['device_info'] = $value;
  990. }
  991. /**
  992. * 获取微信支付分配的终端设备号,与下单一致的值
  993. * @return 值
  994. **/
  995. public function GetDevice_info()
  996. {
  997. return $this->values['device_info'];
  998. }
  999. /**
  1000. * 判断微信支付分配的终端设备号,与下单一致是否存在
  1001. * @return true 或 false
  1002. **/
  1003. public function IsDevice_infoSet()
  1004. {
  1005. return array_key_exists('device_info', $this->values);
  1006. }
  1007. /**
  1008. * 设置随机字符串,不长于32位。推荐随机数生成算法
  1009. * @param string $value
  1010. **/
  1011. public function SetNonce_str($value)
  1012. {
  1013. $this->values['nonce_str'] = $value;
  1014. }
  1015. /**
  1016. * 获取随机字符串,不长于32位。推荐随机数生成算法的值
  1017. * @return 值
  1018. **/
  1019. public function GetNonce_str()
  1020. {
  1021. return $this->values['nonce_str'];
  1022. }
  1023. /**
  1024. * 判断随机字符串,不长于32位。推荐随机数生成算法是否存在
  1025. * @return true 或 false
  1026. **/
  1027. public function IsNonce_strSet()
  1028. {
  1029. return array_key_exists('nonce_str', $this->values);
  1030. }
  1031. /**
  1032. * 设置微信订单号
  1033. * @param string $value
  1034. **/
  1035. public function SetTransaction_id($value)
  1036. {
  1037. $this->values['transaction_id'] = $value;
  1038. }
  1039. /**
  1040. * 获取微信订单号的值
  1041. * @return 值
  1042. **/
  1043. public function GetTransaction_id()
  1044. {
  1045. return $this->values['transaction_id'];
  1046. }
  1047. /**
  1048. * 判断微信订单号是否存在
  1049. * @return true 或 false
  1050. **/
  1051. public function IsTransaction_idSet()
  1052. {
  1053. return array_key_exists('transaction_id', $this->values);
  1054. }
  1055. /**
  1056. * 设置商户系统内部的订单号,transaction_id、out_trade_no二选一,如果同时存在优先级:transaction_id> out_trade_no
  1057. * @param string $value
  1058. **/
  1059. public function SetOut_trade_no($value)
  1060. {
  1061. $this->values['out_trade_no'] = $value;
  1062. }
  1063. /**
  1064. * 获取商户系统内部的订单号,transaction_id、out_trade_no二选一,如果同时存在优先级:transaction_id> out_trade_no的值
  1065. * @return 值
  1066. **/
  1067. public function GetOut_trade_no()
  1068. {
  1069. return $this->values['out_trade_no'];
  1070. }
  1071. /**
  1072. * 判断商户系统内部的订单号,transaction_id、out_trade_no二选一,如果同时存在优先级:transaction_id> out_trade_no是否存在
  1073. * @return true 或 false
  1074. **/
  1075. public function IsOut_trade_noSet()
  1076. {
  1077. return array_key_exists('out_trade_no', $this->values);
  1078. }
  1079. /**
  1080. * 设置商户系统内部的退款单号,商户系统内部唯一,同一退款单号多次请求只退一笔
  1081. * @param string $value
  1082. **/
  1083. public function SetOut_refund_no($value)
  1084. {
  1085. $this->values['out_refund_no'] = $value;
  1086. }
  1087. /**
  1088. * 获取商户系统内部的退款单号,商户系统内部唯一,同一退款单号多次请求只退一笔的值
  1089. * @return 值
  1090. **/
  1091. public function GetOut_refund_no()
  1092. {
  1093. return $this->values['out_refund_no'];
  1094. }
  1095. /**
  1096. * 判断商户系统内部的退款单号,商户系统内部唯一,同一退款单号多次请求只退一笔是否存在
  1097. * @return true 或 false
  1098. **/
  1099. public function IsOut_refund_noSet()
  1100. {
  1101. return array_key_exists('out_refund_no', $this->values);
  1102. }
  1103. /**
  1104. * 设置订单总金额,单位为分,只能为整数,详见支付金额
  1105. * @param string $value
  1106. **/
  1107. public function SetTotal_fee($value)
  1108. {
  1109. $this->values['total_fee'] = $value;
  1110. }
  1111. /**
  1112. * 获取订单总金额,单位为分,只能为整数,详见支付金额的值
  1113. * @return 值
  1114. **/
  1115. public function GetTotal_fee()
  1116. {
  1117. return $this->values['total_fee'];
  1118. }
  1119. /**
  1120. * 判断订单总金额,单位为分,只能为整数,详见支付金额是否存在
  1121. * @return true 或 false
  1122. **/
  1123. public function IsTotal_feeSet()
  1124. {
  1125. return array_key_exists('total_fee', $this->values);
  1126. }
  1127. /**
  1128. * 设置退款总金额,订单总金额,单位为分,只能为整数,详见支付金额
  1129. * @param string $value
  1130. **/
  1131. public function SetRefund_fee($value)
  1132. {
  1133. $this->values['refund_fee'] = $value;
  1134. }
  1135. /**
  1136. * 获取退款总金额,订单总金额,单位为分,只能为整数,详见支付金额的值
  1137. * @return 值
  1138. **/
  1139. public function GetRefund_fee()
  1140. {
  1141. return $this->values['refund_fee'];
  1142. }
  1143. /**
  1144. * 判断退款总金额,订单总金额,单位为分,只能为整数,详见支付金额是否存在
  1145. * @return true 或 false
  1146. **/
  1147. public function IsRefund_feeSet()
  1148. {
  1149. return array_key_exists('refund_fee', $this->values);
  1150. }
  1151. /**
  1152. * 设置货币类型,符合ISO 4217标准的三位字母代码,默认人民币:CNY,其他值列表详见货币类型
  1153. * @param string $value
  1154. **/
  1155. public function SetRefund_fee_type($value)
  1156. {
  1157. $this->values['refund_fee_type'] = $value;
  1158. }
  1159. /**
  1160. * 获取货币类型,符合ISO 4217标准的三位字母代码,默认人民币:CNY,其他值列表详见货币类型的值
  1161. * @return 值
  1162. **/
  1163. public function GetRefund_fee_type()
  1164. {
  1165. return $this->values['refund_fee_type'];
  1166. }
  1167. /**
  1168. * 判断货币类型,符合ISO 4217标准的三位字母代码,默认人民币:CNY,其他值列表详见货币类型是否存在
  1169. * @return true 或 false
  1170. **/
  1171. public function IsRefund_fee_typeSet()
  1172. {
  1173. return array_key_exists('refund_fee_type', $this->values);
  1174. }
  1175. /**
  1176. * 设置操作员帐号, 默认为商户号
  1177. * @param string $value
  1178. **/
  1179. public function SetOp_user_id($value)
  1180. {
  1181. $this->values['op_user_id'] = $value;
  1182. }
  1183. /**
  1184. * 获取操作员帐号, 默认为商户号的值
  1185. * @return 值
  1186. **/
  1187. public function GetOp_user_id()
  1188. {
  1189. return $this->values['op_user_id'];
  1190. }
  1191. /**
  1192. * 判断操作员帐号, 默认为商户号是否存在
  1193. * @return true 或 false
  1194. **/
  1195. public function IsOp_user_idSet()
  1196. {
  1197. return array_key_exists('op_user_id', $this->values);
  1198. }
  1199. }
  1200. /**
  1201. *
  1202. * 退款查询输入对象
  1203. * @author widyhu
  1204. *
  1205. */
  1206. class WxPayRefundQuery extends WxPayDataBase
  1207. {
  1208. /**
  1209. * 设置微信分配的公众账号ID
  1210. * @param string $value
  1211. **/
  1212. public function SetAppid($value)
  1213. {
  1214. $this->values['appid'] = $value;
  1215. }
  1216. /**
  1217. * 获取微信分配的公众账号ID的值
  1218. * @return 值
  1219. **/
  1220. public function GetAppid()
  1221. {
  1222. return $this->values['appid'];
  1223. }
  1224. /**
  1225. * 判断微信分配的公众账号ID是否存在
  1226. * @return true 或 false
  1227. **/
  1228. public function IsAppidSet()
  1229. {
  1230. return array_key_exists('appid', $this->values);
  1231. }
  1232. /**
  1233. * 设置微信支付分配的商户号
  1234. * @param string $value
  1235. **/
  1236. public function SetMch_id($value)
  1237. {
  1238. $this->values['mch_id'] = $value;
  1239. }
  1240. /**
  1241. * 获取微信支付分配的商户号的值
  1242. * @return 值
  1243. **/
  1244. public function GetMch_id()
  1245. {
  1246. return $this->values['mch_id'];
  1247. }
  1248. /**
  1249. * 判断微信支付分配的商户号是否存在
  1250. * @return true 或 false
  1251. **/
  1252. public function IsMch_idSet()
  1253. {
  1254. return array_key_exists('mch_id', $this->values);
  1255. }
  1256. /**
  1257. * 设置微信支付分配的终端设备号
  1258. * @param string $value
  1259. **/
  1260. public function SetDevice_info($value)
  1261. {
  1262. $this->values['device_info'] = $value;
  1263. }
  1264. /**
  1265. * 获取微信支付分配的终端设备号的值
  1266. * @return 值
  1267. **/
  1268. public function GetDevice_info()
  1269. {
  1270. return $this->values['device_info'];
  1271. }
  1272. /**
  1273. * 判断微信支付分配的终端设备号是否存在
  1274. * @return true 或 false
  1275. **/
  1276. public function IsDevice_infoSet()
  1277. {
  1278. return array_key_exists('device_info', $this->values);
  1279. }
  1280. /**
  1281. * 设置随机字符串,不长于32位。推荐随机数生成算法
  1282. * @param string $value
  1283. **/
  1284. public function SetNonce_str($value)
  1285. {
  1286. $this->values['nonce_str'] = $value;
  1287. }
  1288. /**
  1289. * 获取随机字符串,不长于32位。推荐随机数生成算法的值
  1290. * @return 值
  1291. **/
  1292. public function GetNonce_str()
  1293. {
  1294. return $this->values['nonce_str'];
  1295. }
  1296. /**
  1297. * 判断随机字符串,不长于32位。推荐随机数生成算法是否存在
  1298. * @return true 或 false
  1299. **/
  1300. public function IsNonce_strSet()
  1301. {
  1302. return array_key_exists('nonce_str', $this->values);
  1303. }
  1304. /**
  1305. * 设置微信订单号
  1306. * @param string $value
  1307. **/
  1308. public function SetTransaction_id($value)
  1309. {
  1310. $this->values['transaction_id'] = $value;
  1311. }
  1312. /**
  1313. * 获取微信订单号的值
  1314. * @return 值
  1315. **/
  1316. public function GetTransaction_id()
  1317. {
  1318. return $this->values['transaction_id'];
  1319. }
  1320. /**
  1321. * 判断微信订单号是否存在
  1322. * @return true 或 false
  1323. **/
  1324. public function IsTransaction_idSet()
  1325. {
  1326. return array_key_exists('transaction_id', $this->values);
  1327. }
  1328. /**
  1329. * 设置商户系统内部的订单号
  1330. * @param string $value
  1331. **/
  1332. public function SetOut_trade_no($value)
  1333. {
  1334. $this->values['out_trade_no'] = $value;
  1335. }
  1336. /**
  1337. * 获取商户系统内部的订单号的值
  1338. * @return 值
  1339. **/
  1340. public function GetOut_trade_no()
  1341. {
  1342. return $this->values['out_trade_no'];
  1343. }
  1344. /**
  1345. * 判断商户系统内部的订单号是否存在
  1346. * @return true 或 false
  1347. **/
  1348. public function IsOut_trade_noSet()
  1349. {
  1350. return array_key_exists('out_trade_no', $this->values);
  1351. }
  1352. /**
  1353. * 设置商户退款单号
  1354. * @param string $value
  1355. **/
  1356. public function SetOut_refund_no($value)
  1357. {
  1358. $this->values['out_refund_no'] = $value;
  1359. }
  1360. /**
  1361. * 获取商户退款单号的值
  1362. * @return 值
  1363. **/
  1364. public function GetOut_refund_no()
  1365. {
  1366. return $this->values['out_refund_no'];
  1367. }
  1368. /**
  1369. * 判断商户退款单号是否存在
  1370. * @return true 或 false
  1371. **/
  1372. public function IsOut_refund_noSet()
  1373. {
  1374. return array_key_exists('out_refund_no', $this->values);
  1375. }
  1376. /**
  1377. * 设置微信退款单号refund_id、out_refund_no、out_trade_no、transaction_id四个参数必填一个,如果同时存在优先级为:refund_id>out_refund_no>transaction_id>out_trade_no
  1378. * @param string $value
  1379. **/
  1380. public function SetRefund_id($value)
  1381. {
  1382. $this->values['refund_id'] = $value;
  1383. }
  1384. /**
  1385. * 获取微信退款单号refund_id、out_refund_no、out_trade_no、transaction_id四个参数必填一个,如果同时存在优先级为:refund_id>out_refund_no>transaction_id>out_trade_no的值
  1386. * @return 值
  1387. **/
  1388. public function GetRefund_id()
  1389. {
  1390. return $this->values['refund_id'];
  1391. }
  1392. /**
  1393. * 判断微信退款单号refund_id、out_refund_no、out_trade_no、transaction_id四个参数必填一个,如果同时存在优先级为:refund_id>out_refund_no>transaction_id>out_trade_no是否存在
  1394. * @return true 或 false
  1395. **/
  1396. public function IsRefund_idSet()
  1397. {
  1398. return array_key_exists('refund_id', $this->values);
  1399. }
  1400. }
  1401. /**
  1402. *
  1403. * 下载对账单输入对象
  1404. * @author widyhu
  1405. *
  1406. */
  1407. class WxPayDownloadBill extends WxPayDataBase
  1408. {
  1409. /**
  1410. * 设置微信分配的公众账号ID
  1411. * @param string $value
  1412. **/
  1413. public function SetAppid($value)
  1414. {
  1415. $this->values['appid'] = $value;
  1416. }
  1417. /**
  1418. * 获取微信分配的公众账号ID的值
  1419. * @return 值
  1420. **/
  1421. public function GetAppid()
  1422. {
  1423. return $this->values['appid'];
  1424. }
  1425. /**
  1426. * 判断微信分配的公众账号ID是否存在
  1427. * @return true 或 false
  1428. **/
  1429. public function IsAppidSet()
  1430. {
  1431. return array_key_exists('appid', $this->values);
  1432. }
  1433. /**
  1434. * 设置微信支付分配的商户号
  1435. * @param string $value
  1436. **/
  1437. public function SetMch_id($value)
  1438. {
  1439. $this->values['mch_id'] = $value;
  1440. }
  1441. /**
  1442. * 获取微信支付分配的商户号的值
  1443. * @return 值
  1444. **/
  1445. public function GetMch_id()
  1446. {
  1447. return $this->values['mch_id'];
  1448. }
  1449. /**
  1450. * 判断微信支付分配的商户号是否存在
  1451. * @return true 或 false
  1452. **/
  1453. public function IsMch_idSet()
  1454. {
  1455. return array_key_exists('mch_id', $this->values);
  1456. }
  1457. /**
  1458. * 设置微信支付分配的终端设备号,填写此字段,只下载该设备号的对账单
  1459. * @param string $value
  1460. **/
  1461. public function SetDevice_info($value)
  1462. {
  1463. $this->values['device_info'] = $value;
  1464. }
  1465. /**
  1466. * 获取微信支付分配的终端设备号,填写此字段,只下载该设备号的对账单的值
  1467. * @return 值
  1468. **/
  1469. public function GetDevice_info()
  1470. {
  1471. return $this->values['device_info'];
  1472. }
  1473. /**
  1474. * 判断微信支付分配的终端设备号,填写此字段,只下载该设备号的对账单是否存在
  1475. * @return true 或 false
  1476. **/
  1477. public function IsDevice_infoSet()
  1478. {
  1479. return array_key_exists('device_info', $this->values);
  1480. }
  1481. /**
  1482. * 设置随机字符串,不长于32位。推荐随机数生成算法
  1483. * @param string $value
  1484. **/
  1485. public function SetNonce_str($value)
  1486. {
  1487. $this->values['nonce_str'] = $value;
  1488. }
  1489. /**
  1490. * 获取随机字符串,不长于32位。推荐随机数生成算法的值
  1491. * @return 值
  1492. **/
  1493. public function GetNonce_str()
  1494. {
  1495. return $this->values['nonce_str'];
  1496. }
  1497. /**
  1498. * 判断随机字符串,不长于32位。推荐随机数生成算法是否存在
  1499. * @return true 或 false
  1500. **/
  1501. public function IsNonce_strSet()
  1502. {
  1503. return array_key_exists('nonce_str', $this->values);
  1504. }
  1505. /**
  1506. * 设置下载对账单的日期,格式:20140603
  1507. * @param string $value
  1508. **/
  1509. public function SetBill_date($value)
  1510. {
  1511. $this->values['bill_date'] = $value;
  1512. }
  1513. /**
  1514. * 获取下载对账单的日期,格式:20140603的值
  1515. * @return 值
  1516. **/
  1517. public function GetBill_date()
  1518. {
  1519. return $this->values['bill_date'];
  1520. }
  1521. /**
  1522. * 判断下载对账单的日期,格式:20140603是否存在
  1523. * @return true 或 false
  1524. **/
  1525. public function IsBill_dateSet()
  1526. {
  1527. return array_key_exists('bill_date', $this->values);
  1528. }
  1529. /**
  1530. * 设置ALL,返回当日所有订单信息,默认值SUCCESS,返回当日成功支付的订单REFUND,返回当日退款订单REVOKED,已撤销的订单
  1531. * @param string $value
  1532. **/
  1533. public function SetBill_type($value)
  1534. {
  1535. $this->values['bill_type'] = $value;
  1536. }
  1537. /**
  1538. * 获取ALL,返回当日所有订单信息,默认值SUCCESS,返回当日成功支付的订单REFUND,返回当日退款订单REVOKED,已撤销的订单的值
  1539. * @return 值
  1540. **/
  1541. public function GetBill_type()
  1542. {
  1543. return $this->values['bill_type'];
  1544. }
  1545. /**
  1546. * 判断ALL,返回当日所有订单信息,默认值SUCCESS,返回当日成功支付的订单REFUND,返回当日退款订单REVOKED,已撤销的订单是否存在
  1547. * @return true 或 false
  1548. **/
  1549. public function IsBill_typeSet()
  1550. {
  1551. return array_key_exists('bill_type', $this->values);
  1552. }
  1553. }
  1554. /**
  1555. *
  1556. * 测速上报输入对象
  1557. * @author widyhu
  1558. *
  1559. */
  1560. class WxPayReport extends WxPayDataBase
  1561. {
  1562. /**
  1563. * 设置微信分配的公众账号ID
  1564. * @param string $value
  1565. **/
  1566. public function SetAppid($value)
  1567. {
  1568. $this->values['appid'] = $value;
  1569. }
  1570. /**
  1571. * 获取微信分配的公众账号ID的值
  1572. * @return 值
  1573. **/
  1574. public function GetAppid()
  1575. {
  1576. return $this->values['appid'];
  1577. }
  1578. /**
  1579. * 判断微信分配的公众账号ID是否存在
  1580. * @return true 或 false
  1581. **/
  1582. public function IsAppidSet()
  1583. {
  1584. return array_key_exists('appid', $this->values);
  1585. }
  1586. /**
  1587. * 设置微信支付分配的商户号
  1588. * @param string $value
  1589. **/
  1590. public function SetMch_id($value)
  1591. {
  1592. $this->values['mch_id'] = $value;
  1593. }
  1594. /**
  1595. * 获取微信支付分配的商户号的值
  1596. * @return 值
  1597. **/
  1598. public function GetMch_id()
  1599. {
  1600. return $this->values['mch_id'];
  1601. }
  1602. /**
  1603. * 判断微信支付分配的商户号是否存在
  1604. * @return true 或 false
  1605. **/
  1606. public function IsMch_idSet()
  1607. {
  1608. return array_key_exists('mch_id', $this->values);
  1609. }
  1610. /**
  1611. * 设置微信支付分配的终端设备号,商户自定义
  1612. * @param string $value
  1613. **/
  1614. public function SetDevice_info($value)
  1615. {
  1616. $this->values['device_info'] = $value;
  1617. }
  1618. /**
  1619. * 获取微信支付分配的终端设备号,商户自定义的值
  1620. * @return 值
  1621. **/
  1622. public function GetDevice_info()
  1623. {
  1624. return $this->values['device_info'];
  1625. }
  1626. /**
  1627. * 判断微信支付分配的终端设备号,商户自定义是否存在
  1628. * @return true 或 false
  1629. **/
  1630. public function IsDevice_infoSet()
  1631. {
  1632. return array_key_exists('device_info', $this->values);
  1633. }
  1634. /**
  1635. * 设置随机字符串,不长于32位。推荐随机数生成算法
  1636. * @param string $value
  1637. **/
  1638. public function SetNonce_str($value)
  1639. {
  1640. $this->values['nonce_str'] = $value;
  1641. }
  1642. /**
  1643. * 获取随机字符串,不长于32位。推荐随机数生成算法的值
  1644. * @return 值
  1645. **/
  1646. public function GetNonce_str()
  1647. {
  1648. return $this->values['nonce_str'];
  1649. }
  1650. /**
  1651. * 判断随机字符串,不长于32位。推荐随机数生成算法是否存在
  1652. * @return true 或 false
  1653. **/
  1654. public function IsNonce_strSet()
  1655. {
  1656. return array_key_exists('nonce_str', $this->values);
  1657. }
  1658. /**
  1659. * 设置上报对应的接口的完整URL,类似:https://api.mch.weixin.qq.com/pay/unifiedorder对于被扫支付,为更好的和商户共同分析一次业务行为的整体耗时情况,对于两种接入模式,请都在门店侧对一次被扫行为进行一次单独的整体上报,上报URL指定为:https://api.mch.weixin.qq.com/pay/micropay/total关于两种接入模式具体可参考本文档章节:被扫支付商户接入模式其它接口调用仍然按照调用一次,上报一次来进行。
  1660. * @param string $value
  1661. **/
  1662. public function SetInterface_url($value)
  1663. {
  1664. $this->values['interface_url'] = $value;
  1665. }
  1666. /**
  1667. * 获取上报对应的接口的完整URL,类似:https://api.mch.weixin.qq.com/pay/unifiedorder对于被扫支付,为更好的和商户共同分析一次业务行为的整体耗时情况,对于两种接入模式,请都在门店侧对一次被扫行为进行一次单独的整体上报,上报URL指定为:https://api.mch.weixin.qq.com/pay/micropay/total关于两种接入模式具体可参考本文档章节:被扫支付商户接入模式其它接口调用仍然按照调用一次,上报一次来进行。的值
  1668. * @return 值
  1669. **/
  1670. public function GetInterface_url()
  1671. {
  1672. return $this->values['interface_url'];
  1673. }
  1674. /**
  1675. * 判断上报对应的接口的完整URL,类似:https://api.mch.weixin.qq.com/pay/unifiedorder对于被扫支付,为更好的和商户共同分析一次业务行为的整体耗时情况,对于两种接入模式,请都在门店侧对一次被扫行为进行一次单独的整体上报,上报URL指定为:https://api.mch.weixin.qq.com/pay/micropay/total关于两种接入模式具体可参考本文档章节:被扫支付商户接入模式其它接口调用仍然按照调用一次,上报一次来进行。是否存在
  1676. * @return true 或 false
  1677. **/
  1678. public function IsInterface_urlSet()
  1679. {
  1680. return array_key_exists('interface_url', $this->values);
  1681. }
  1682. /**
  1683. * 设置接口耗时情况,单位为毫秒
  1684. * @param string $value
  1685. **/
  1686. public function SetExecute_time_($value)
  1687. {
  1688. $this->values['execute_time_'] = $value;
  1689. }
  1690. /**
  1691. * 获取接口耗时情况,单位为毫秒的值
  1692. * @return 值
  1693. **/
  1694. public function GetExecute_time_()
  1695. {
  1696. return $this->values['execute_time_'];
  1697. }
  1698. /**
  1699. * 判断接口耗时情况,单位为毫秒是否存在
  1700. * @return true 或 false
  1701. **/
  1702. public function IsExecute_time_Set()
  1703. {
  1704. return array_key_exists('execute_time_', $this->values);
  1705. }
  1706. /**
  1707. * 设置SUCCESS/FAIL此字段是通信标识,非交易标识,交易是否成功需要查看trade_state来判断
  1708. * @param string $value
  1709. **/
  1710. public function SetReturn_code($value)
  1711. {
  1712. $this->values['return_code'] = $value;
  1713. }
  1714. /**
  1715. * 获取SUCCESS/FAIL此字段是通信标识,非交易标识,交易是否成功需要查看trade_state来判断的值
  1716. * @return 值
  1717. **/
  1718. public function GetReturn_code()
  1719. {
  1720. return $this->values['return_code'];
  1721. }
  1722. /**
  1723. * 判断SUCCESS/FAIL此字段是通信标识,非交易标识,交易是否成功需要查看trade_state来判断是否存在
  1724. * @return true 或 false
  1725. **/
  1726. public function IsReturn_codeSet()
  1727. {
  1728. return array_key_exists('return_code', $this->values);
  1729. }
  1730. /**
  1731. * 设置返回信息,如非空,为错误原因签名失败参数格式校验错误
  1732. * @param string $value
  1733. **/
  1734. public function SetReturn_msg($value)
  1735. {
  1736. $this->values['return_msg'] = $value;
  1737. }
  1738. /**
  1739. * 获取返回信息,如非空,为错误原因签名失败参数格式校验错误的值
  1740. * @return 值
  1741. **/
  1742. public function GetReturn_msg()
  1743. {
  1744. return $this->values['return_msg'];
  1745. }
  1746. /**
  1747. * 判断返回信息,如非空,为错误原因签名失败参数格式校验错误是否存在
  1748. * @return true 或 false
  1749. **/
  1750. public function IsReturn_msgSet()
  1751. {
  1752. return array_key_exists('return_msg', $this->values);
  1753. }
  1754. /**
  1755. * 设置SUCCESS/FAIL
  1756. * @param string $value
  1757. **/
  1758. public function SetResult_code($value)
  1759. {
  1760. $this->values['result_code'] = $value;
  1761. }
  1762. /**
  1763. * 获取SUCCESS/FAIL的值
  1764. * @return 值
  1765. **/
  1766. public function GetResult_code()
  1767. {
  1768. return $this->values['result_code'];
  1769. }
  1770. /**
  1771. * 判断SUCCESS/FAIL是否存在
  1772. * @return true 或 false
  1773. **/
  1774. public function IsResult_codeSet()
  1775. {
  1776. return array_key_exists('result_code', $this->values);
  1777. }
  1778. /**
  1779. * 设置ORDERNOTEXIST—订单不存在SYSTEMERROR—系统错误
  1780. * @param string $value
  1781. **/
  1782. public function SetErr_code($value)
  1783. {
  1784. $this->values['err_code'] = $value;
  1785. }
  1786. /**
  1787. * 获取ORDERNOTEXIST—订单不存在SYSTEMERROR—系统错误的值
  1788. * @return 值
  1789. **/
  1790. public function GetErr_code()
  1791. {
  1792. return $this->values['err_code'];
  1793. }
  1794. /**
  1795. * 判断ORDERNOTEXIST—订单不存在SYSTEMERROR—系统错误是否存在
  1796. * @return true 或 false
  1797. **/
  1798. public function IsErr_codeSet()
  1799. {
  1800. return array_key_exists('err_code', $this->values);
  1801. }
  1802. /**
  1803. * 设置结果信息描述
  1804. * @param string $value
  1805. **/
  1806. public function SetErr_code_des($value)
  1807. {
  1808. $this->values['err_code_des'] = $value;
  1809. }
  1810. /**
  1811. * 获取结果信息描述的值
  1812. * @return 值
  1813. **/
  1814. public function GetErr_code_des()
  1815. {
  1816. return $this->values['err_code_des'];
  1817. }
  1818. /**
  1819. * 判断结果信息描述是否存在
  1820. * @return true 或 false
  1821. **/
  1822. public function IsErr_code_desSet()
  1823. {
  1824. return array_key_exists('err_code_des', $this->values);
  1825. }
  1826. /**
  1827. * 设置商户系统内部的订单号,商户可以在上报时提供相关商户订单号方便微信支付更好的提高服务质量。
  1828. * @param string $value
  1829. **/
  1830. public function SetOut_trade_no($value)
  1831. {
  1832. $this->values['out_trade_no'] = $value;
  1833. }
  1834. /**
  1835. * 获取商户系统内部的订单号,商户可以在上报时提供相关商户订单号方便微信支付更好的提高服务质量。 的值
  1836. * @return 值
  1837. **/
  1838. public function GetOut_trade_no()
  1839. {
  1840. return $this->values['out_trade_no'];
  1841. }
  1842. /**
  1843. * 判断商户系统内部的订单号,商户可以在上报时提供相关商户订单号方便微信支付更好的提高服务质量。 是否存在
  1844. * @return true 或 false
  1845. **/
  1846. public function IsOut_trade_noSet()
  1847. {
  1848. return array_key_exists('out_trade_no', $this->values);
  1849. }
  1850. /**
  1851. * 设置发起接口调用时的机器IP
  1852. * @param string $value
  1853. **/
  1854. public function SetUser_ip($value)
  1855. {
  1856. $this->values['user_ip'] = $value;
  1857. }
  1858. /**
  1859. * 获取发起接口调用时的机器IP 的值
  1860. * @return 值
  1861. **/
  1862. public function GetUser_ip()
  1863. {
  1864. return $this->values['user_ip'];
  1865. }
  1866. /**
  1867. * 判断发起接口调用时的机器IP 是否存在
  1868. * @return true 或 false
  1869. **/
  1870. public function IsUser_ipSet()
  1871. {
  1872. return array_key_exists('user_ip', $this->values);
  1873. }
  1874. /**
  1875. * 设置系统时间,格式为yyyyMMddHHmmss,如2009年12月27日9点10分10秒表示为20091227091010。其他详见时间规则
  1876. * @param string $value
  1877. **/
  1878. public function SetTime($value)
  1879. {
  1880. $this->values['time'] = $value;
  1881. }
  1882. /**
  1883. * 获取系统时间,格式为yyyyMMddHHmmss,如2009年12月27日9点10分10秒表示为20091227091010。其他详见时间规则的值
  1884. * @return 值
  1885. **/
  1886. public function GetTime()
  1887. {
  1888. return $this->values['time'];
  1889. }
  1890. /**
  1891. * 判断系统时间,格式为yyyyMMddHHmmss,如2009年12月27日9点10分10秒表示为20091227091010。其他详见时间规则是否存在
  1892. * @return true 或 false
  1893. **/
  1894. public function IsTimeSet()
  1895. {
  1896. return array_key_exists('time', $this->values);
  1897. }
  1898. }
  1899. /**
  1900. *
  1901. * 短链转换输入对象
  1902. * @author widyhu
  1903. *
  1904. */
  1905. class WxPayShortUrl extends WxPayDataBase
  1906. {
  1907. /**
  1908. * 设置微信分配的公众账号ID
  1909. * @param string $value
  1910. **/
  1911. public function SetAppid($value)
  1912. {
  1913. $this->values['appid'] = $value;
  1914. }
  1915. /**
  1916. * 获取微信分配的公众账号ID的值
  1917. * @return 值
  1918. **/
  1919. public function GetAppid()
  1920. {
  1921. return $this->values['appid'];
  1922. }
  1923. /**
  1924. * 判断微信分配的公众账号ID是否存在
  1925. * @return true 或 false
  1926. **/
  1927. public function IsAppidSet()
  1928. {
  1929. return array_key_exists('appid', $this->values);
  1930. }
  1931. /**
  1932. * 设置微信支付分配的商户号
  1933. * @param string $value
  1934. **/
  1935. public function SetMch_id($value)
  1936. {
  1937. $this->values['mch_id'] = $value;
  1938. }
  1939. /**
  1940. * 获取微信支付分配的商户号的值
  1941. * @return 值
  1942. **/
  1943. public function GetMch_id()
  1944. {
  1945. return $this->values['mch_id'];
  1946. }
  1947. /**
  1948. * 判断微信支付分配的商户号是否存在
  1949. * @return true 或 false
  1950. **/
  1951. public function IsMch_idSet()
  1952. {
  1953. return array_key_exists('mch_id', $this->values);
  1954. }
  1955. /**
  1956. * 设置需要转换的URL,签名用原串,传输需URL encode
  1957. * @param string $value
  1958. **/
  1959. public function SetLong_url($value)
  1960. {
  1961. $this->values['long_url'] = $value;
  1962. }
  1963. /**
  1964. * 获取需要转换的URL,签名用原串,传输需URL encode的值
  1965. * @return 值
  1966. **/
  1967. public function GetLong_url()
  1968. {
  1969. return $this->values['long_url'];
  1970. }
  1971. /**
  1972. * 判断需要转换的URL,签名用原串,传输需URL encode是否存在
  1973. * @return true 或 false
  1974. **/
  1975. public function IsLong_urlSet()
  1976. {
  1977. return array_key_exists('long_url', $this->values);
  1978. }
  1979. /**
  1980. * 设置随机字符串,不长于32位。推荐随机数生成算法
  1981. * @param string $value
  1982. **/
  1983. public function SetNonce_str($value)
  1984. {
  1985. $this->values['nonce_str'] = $value;
  1986. }
  1987. /**
  1988. * 获取随机字符串,不长于32位。推荐随机数生成算法的值
  1989. * @return 值
  1990. **/
  1991. public function GetNonce_str()
  1992. {
  1993. return $this->values['nonce_str'];
  1994. }
  1995. /**
  1996. * 判断随机字符串,不长于32位。推荐随机数生成算法是否存在
  1997. * @return true 或 false
  1998. **/
  1999. public function IsNonce_strSet()
  2000. {
  2001. return array_key_exists('nonce_str', $this->values);
  2002. }
  2003. }
  2004. /**
  2005. *
  2006. * 提交被扫输入对象
  2007. * @author widyhu
  2008. *
  2009. */
  2010. class WxPayMicroPay extends WxPayDataBase
  2011. {
  2012. /**
  2013. * 设置微信分配的公众账号ID
  2014. * @param string $value
  2015. **/
  2016. public function SetAppid($value)
  2017. {
  2018. $this->values['appid'] = $value;
  2019. }
  2020. /**
  2021. * 获取微信分配的公众账号ID的值
  2022. * @return 值
  2023. **/
  2024. public function GetAppid()
  2025. {
  2026. return $this->values['appid'];
  2027. }
  2028. /**
  2029. * 判断微信分配的公众账号ID是否存在
  2030. * @return true 或 false
  2031. **/
  2032. public function IsAppidSet()
  2033. {
  2034. return array_key_exists('appid', $this->values);
  2035. }
  2036. /**
  2037. * 设置微信支付分配的商户号
  2038. * @param string $value
  2039. **/
  2040. public function SetMch_id($value)
  2041. {
  2042. $this->values['mch_id'] = $value;
  2043. }
  2044. /**
  2045. * 获取微信支付分配的商户号的值
  2046. * @return 值
  2047. **/
  2048. public function GetMch_id()
  2049. {
  2050. return $this->values['mch_id'];
  2051. }
  2052. /**
  2053. * 判断微信支付分配的商户号是否存在
  2054. * @return true 或 false
  2055. **/
  2056. public function IsMch_idSet()
  2057. {
  2058. return array_key_exists('mch_id', $this->values);
  2059. }
  2060. /**
  2061. * 设置终端设备号(商户自定义,如门店编号)
  2062. * @param string $value
  2063. **/
  2064. public function SetDevice_info($value)
  2065. {
  2066. $this->values['device_info'] = $value;
  2067. }
  2068. /**
  2069. * 获取终端设备号(商户自定义,如门店编号)的值
  2070. * @return 值
  2071. **/
  2072. public function GetDevice_info()
  2073. {
  2074. return $this->values['device_info'];
  2075. }
  2076. /**
  2077. * 判断终端设备号(商户自定义,如门店编号)是否存在
  2078. * @return true 或 false
  2079. **/
  2080. public function IsDevice_infoSet()
  2081. {
  2082. return array_key_exists('device_info', $this->values);
  2083. }
  2084. /**
  2085. * 设置随机字符串,不长于32位。推荐随机数生成算法
  2086. * @param string $value
  2087. **/
  2088. public function SetNonce_str($value)
  2089. {
  2090. $this->values['nonce_str'] = $value;
  2091. }
  2092. /**
  2093. * 获取随机字符串,不长于32位。推荐随机数生成算法的值
  2094. * @return 值
  2095. **/
  2096. public function GetNonce_str()
  2097. {
  2098. return $this->values['nonce_str'];
  2099. }
  2100. /**
  2101. * 判断随机字符串,不长于32位。推荐随机数生成算法是否存在
  2102. * @return true 或 false
  2103. **/
  2104. public function IsNonce_strSet()
  2105. {
  2106. return array_key_exists('nonce_str', $this->values);
  2107. }
  2108. /**
  2109. * 设置商品或支付单简要描述
  2110. * @param string $value
  2111. **/
  2112. public function SetBody($value)
  2113. {
  2114. $this->values['body'] = $value;
  2115. }
  2116. /**
  2117. * 获取商品或支付单简要描述的值
  2118. * @return 值
  2119. **/
  2120. public function GetBody()
  2121. {
  2122. return $this->values['body'];
  2123. }
  2124. /**
  2125. * 判断商品或支付单简要描述是否存在
  2126. * @return true 或 false
  2127. **/
  2128. public function IsBodySet()
  2129. {
  2130. return array_key_exists('body', $this->values);
  2131. }
  2132. /**
  2133. * 设置商品名称明细列表
  2134. * @param string $value
  2135. **/
  2136. public function SetDetail($value)
  2137. {
  2138. $this->values['detail'] = $value;
  2139. }
  2140. /**
  2141. * 获取商品名称明细列表的值
  2142. * @return 值
  2143. **/
  2144. public function GetDetail()
  2145. {
  2146. return $this->values['detail'];
  2147. }
  2148. /**
  2149. * 判断商品名称明细列表是否存在
  2150. * @return true 或 false
  2151. **/
  2152. public function IsDetailSet()
  2153. {
  2154. return array_key_exists('detail', $this->values);
  2155. }
  2156. /**
  2157. * 设置附加数据,在查询API和支付通知中原样返回,该字段主要用于商户携带订单的自定义数据
  2158. * @param string $value
  2159. **/
  2160. public function SetAttach($value)
  2161. {
  2162. $this->values['attach'] = $value;
  2163. }
  2164. /**
  2165. * 获取附加数据,在查询API和支付通知中原样返回,该字段主要用于商户携带订单的自定义数据的值
  2166. * @return 值
  2167. **/
  2168. public function GetAttach()
  2169. {
  2170. return $this->values['attach'];
  2171. }
  2172. /**
  2173. * 判断附加数据,在查询API和支付通知中原样返回,该字段主要用于商户携带订单的自定义数据是否存在
  2174. * @return true 或 false
  2175. **/
  2176. public function IsAttachSet()
  2177. {
  2178. return array_key_exists('attach', $this->values);
  2179. }
  2180. /**
  2181. * 设置商户系统内部的订单号,32个字符内、可包含字母, 其他说明见商户订单号
  2182. * @param string $value
  2183. **/
  2184. public function SetOut_trade_no($value)
  2185. {
  2186. $this->values['out_trade_no'] = $value;
  2187. }
  2188. /**
  2189. * 获取商户系统内部的订单号,32个字符内、可包含字母, 其他说明见商户订单号的值
  2190. * @return 值
  2191. **/
  2192. public function GetOut_trade_no()
  2193. {
  2194. return $this->values['out_trade_no'];
  2195. }
  2196. /**
  2197. * 判断商户系统内部的订单号,32个字符内、可包含字母, 其他说明见商户订单号是否存在
  2198. * @return true 或 false
  2199. **/
  2200. public function IsOut_trade_noSet()
  2201. {
  2202. return array_key_exists('out_trade_no', $this->values);
  2203. }
  2204. /**
  2205. * 设置订单总金额,单位为分,只能为整数,详见支付金额
  2206. * @param string $value
  2207. **/
  2208. public function SetTotal_fee($value)
  2209. {
  2210. $this->values['total_fee'] = $value;
  2211. }
  2212. /**
  2213. * 获取订单总金额,单位为分,只能为整数,详见支付金额的值
  2214. * @return 值
  2215. **/
  2216. public function GetTotal_fee()
  2217. {
  2218. return $this->values['total_fee'];
  2219. }
  2220. /**
  2221. * 判断订单总金额,单位为分,只能为整数,详见支付金额是否存在
  2222. * @return true 或 false
  2223. **/
  2224. public function IsTotal_feeSet()
  2225. {
  2226. return array_key_exists('total_fee', $this->values);
  2227. }
  2228. /**
  2229. * 设置符合ISO 4217标准的三位字母代码,默认人民币:CNY,其他值列表详见货币类型
  2230. * @param string $value
  2231. **/
  2232. public function SetFee_type($value)
  2233. {
  2234. $this->values['fee_type'] = $value;
  2235. }
  2236. /**
  2237. * 获取符合ISO 4217标准的三位字母代码,默认人民币:CNY,其他值列表详见货币类型的值
  2238. * @return 值
  2239. **/
  2240. public function GetFee_type()
  2241. {
  2242. return $this->values['fee_type'];
  2243. }
  2244. /**
  2245. * 判断符合ISO 4217标准的三位字母代码,默认人民币:CNY,其他值列表详见货币类型是否存在
  2246. * @return true 或 false
  2247. **/
  2248. public function IsFee_typeSet()
  2249. {
  2250. return array_key_exists('fee_type', $this->values);
  2251. }
  2252. /**
  2253. * 设置调用微信支付API的机器IP
  2254. * @param string $value
  2255. **/
  2256. public function SetSpbill_create_ip($value)
  2257. {
  2258. $this->values['spbill_create_ip'] = $value;
  2259. }
  2260. /**
  2261. * 获取调用微信支付API的机器IP 的值
  2262. * @return 值
  2263. **/
  2264. public function GetSpbill_create_ip()
  2265. {
  2266. return $this->values['spbill_create_ip'];
  2267. }
  2268. /**
  2269. * 判断调用微信支付API的机器IP 是否存在
  2270. * @return true 或 false
  2271. **/
  2272. public function IsSpbill_create_ipSet()
  2273. {
  2274. return array_key_exists('spbill_create_ip', $this->values);
  2275. }
  2276. /**
  2277. * 设置订单生成时间,格式为yyyyMMddHHmmss,如2009年12月25日9点10分10秒表示为20091225091010。详见时间规则
  2278. * @param string $value
  2279. **/
  2280. public function SetTime_start($value)
  2281. {
  2282. $this->values['time_start'] = $value;
  2283. }
  2284. /**
  2285. * 获取订单生成时间,格式为yyyyMMddHHmmss,如2009年12月25日9点10分10秒表示为20091225091010。详见时间规则的值
  2286. * @return 值
  2287. **/
  2288. public function GetTime_start()
  2289. {
  2290. return $this->values['time_start'];
  2291. }
  2292. /**
  2293. * 判断订单生成时间,格式为yyyyMMddHHmmss,如2009年12月25日9点10分10秒表示为20091225091010。详见时间规则是否存在
  2294. * @return true 或 false
  2295. **/
  2296. public function IsTime_startSet()
  2297. {
  2298. return array_key_exists('time_start', $this->values);
  2299. }
  2300. /**
  2301. * 设置订单失效时间,格式为yyyyMMddHHmmss,如2009年12月27日9点10分10秒表示为20091227091010。详见时间规则
  2302. * @param string $value
  2303. **/
  2304. public function SetTime_expire($value)
  2305. {
  2306. $this->values['time_expire'] = $value;
  2307. }
  2308. /**
  2309. * 获取订单失效时间,格式为yyyyMMddHHmmss,如2009年12月27日9点10分10秒表示为20091227091010。详见时间规则的值
  2310. * @return 值
  2311. **/
  2312. public function GetTime_expire()
  2313. {
  2314. return $this->values['time_expire'];
  2315. }
  2316. /**
  2317. * 判断订单失效时间,格式为yyyyMMddHHmmss,如2009年12月27日9点10分10秒表示为20091227091010。详见时间规则是否存在
  2318. * @return true 或 false
  2319. **/
  2320. public function IsTime_expireSet()
  2321. {
  2322. return array_key_exists('time_expire', $this->values);
  2323. }
  2324. /**
  2325. * 设置商品标记,代金券或立减优惠功能的参数,说明详见代金券或立减优惠
  2326. * @param string $value
  2327. **/
  2328. public function SetGoods_tag($value)
  2329. {
  2330. $this->values['goods_tag'] = $value;
  2331. }
  2332. /**
  2333. * 获取商品标记,代金券或立减优惠功能的参数,说明详见代金券或立减优惠的值
  2334. * @return 值
  2335. **/
  2336. public function GetGoods_tag()
  2337. {
  2338. return $this->values['goods_tag'];
  2339. }
  2340. /**
  2341. * 判断商品标记,代金券或立减优惠功能的参数,说明详见代金券或立减优惠是否存在
  2342. * @return true 或 false
  2343. **/
  2344. public function IsGoods_tagSet()
  2345. {
  2346. return array_key_exists('goods_tag', $this->values);
  2347. }
  2348. /**
  2349. * 设置扫码支付授权码,设备读取用户微信中的条码或者二维码信息
  2350. * @param string $value
  2351. **/
  2352. public function SetAuth_code($value)
  2353. {
  2354. $this->values['auth_code'] = $value;
  2355. }
  2356. /**
  2357. * 获取扫码支付授权码,设备读取用户微信中的条码或者二维码信息的值
  2358. * @return 值
  2359. **/
  2360. public function GetAuth_code()
  2361. {
  2362. return $this->values['auth_code'];
  2363. }
  2364. /**
  2365. * 判断扫码支付授权码,设备读取用户微信中的条码或者二维码信息是否存在
  2366. * @return true 或 false
  2367. **/
  2368. public function IsAuth_codeSet()
  2369. {
  2370. return array_key_exists('auth_code', $this->values);
  2371. }
  2372. }
  2373. /**
  2374. *
  2375. * 撤销输入对象
  2376. * @author widyhu
  2377. *
  2378. */
  2379. class WxPayReverse extends WxPayDataBase
  2380. {
  2381. /**
  2382. * 设置微信分配的公众账号ID
  2383. * @param string $value
  2384. **/
  2385. public function SetAppid($value)
  2386. {
  2387. $this->values['appid'] = $value;
  2388. }
  2389. /**
  2390. * 获取微信分配的公众账号ID的值
  2391. * @return 值
  2392. **/
  2393. public function GetAppid()
  2394. {
  2395. return $this->values['appid'];
  2396. }
  2397. /**
  2398. * 判断微信分配的公众账号ID是否存在
  2399. * @return true 或 false
  2400. **/
  2401. public function IsAppidSet()
  2402. {
  2403. return array_key_exists('appid', $this->values);
  2404. }
  2405. /**
  2406. * 设置微信支付分配的商户号
  2407. * @param string $value
  2408. **/
  2409. public function SetMch_id($value)
  2410. {
  2411. $this->values['mch_id'] = $value;
  2412. }
  2413. /**
  2414. * 获取微信支付分配的商户号的值
  2415. * @return 值
  2416. **/
  2417. public function GetMch_id()
  2418. {
  2419. return $this->values['mch_id'];
  2420. }
  2421. /**
  2422. * 判断微信支付分配的商户号是否存在
  2423. * @return true 或 false
  2424. **/
  2425. public function IsMch_idSet()
  2426. {
  2427. return array_key_exists('mch_id', $this->values);
  2428. }
  2429. /**
  2430. * 设置微信的订单号,优先使用
  2431. * @param string $value
  2432. **/
  2433. public function SetTransaction_id($value)
  2434. {
  2435. $this->values['transaction_id'] = $value;
  2436. }
  2437. /**
  2438. * 获取微信的订单号,优先使用的值
  2439. * @return 值
  2440. **/
  2441. public function GetTransaction_id()
  2442. {
  2443. return $this->values['transaction_id'];
  2444. }
  2445. /**
  2446. * 判断微信的订单号,优先使用是否存在
  2447. * @return true 或 false
  2448. **/
  2449. public function IsTransaction_idSet()
  2450. {
  2451. return array_key_exists('transaction_id', $this->values);
  2452. }
  2453. /**
  2454. * 设置商户系统内部的订单号,transaction_id、out_trade_no二选一,如果同时存在优先级:transaction_id> out_trade_no
  2455. * @param string $value
  2456. **/
  2457. public function SetOut_trade_no($value)
  2458. {
  2459. $this->values['out_trade_no'] = $value;
  2460. }
  2461. /**
  2462. * 获取商户系统内部的订单号,transaction_id、out_trade_no二选一,如果同时存在优先级:transaction_id> out_trade_no的值
  2463. * @return 值
  2464. **/
  2465. public function GetOut_trade_no()
  2466. {
  2467. return $this->values['out_trade_no'];
  2468. }
  2469. /**
  2470. * 判断商户系统内部的订单号,transaction_id、out_trade_no二选一,如果同时存在优先级:transaction_id> out_trade_no是否存在
  2471. * @return true 或 false
  2472. **/
  2473. public function IsOut_trade_noSet()
  2474. {
  2475. return array_key_exists('out_trade_no', $this->values);
  2476. }
  2477. /**
  2478. * 设置随机字符串,不长于32位。推荐随机数生成算法
  2479. * @param string $value
  2480. **/
  2481. public function SetNonce_str($value)
  2482. {
  2483. $this->values['nonce_str'] = $value;
  2484. }
  2485. /**
  2486. * 获取随机字符串,不长于32位。推荐随机数生成算法的值
  2487. * @return 值
  2488. **/
  2489. public function GetNonce_str()
  2490. {
  2491. return $this->values['nonce_str'];
  2492. }
  2493. /**
  2494. * 判断随机字符串,不长于32位。推荐随机数生成算法是否存在
  2495. * @return true 或 false
  2496. **/
  2497. public function IsNonce_strSet()
  2498. {
  2499. return array_key_exists('nonce_str', $this->values);
  2500. }
  2501. }
  2502. /**
  2503. *
  2504. * 提交JSAPI输入对象
  2505. * @author widyhu
  2506. *
  2507. */
  2508. class WxPayJsApiPay extends WxPayDataBase
  2509. {
  2510. /**
  2511. * 设置微信分配的公众账号ID
  2512. * @param string $value
  2513. **/
  2514. public function SetAppid($value)
  2515. {
  2516. $this->values['appId'] = $value;
  2517. }
  2518. /**
  2519. * 获取微信分配的公众账号ID的值
  2520. * @return 值
  2521. **/
  2522. public function GetAppid()
  2523. {
  2524. return $this->values['appId'];
  2525. }
  2526. /**
  2527. * 判断微信分配的公众账号ID是否存在
  2528. * @return true 或 false
  2529. **/
  2530. public function IsAppidSet()
  2531. {
  2532. return array_key_exists('appId', $this->values);
  2533. }
  2534. /**
  2535. * 设置支付时间戳
  2536. * @param string $value
  2537. **/
  2538. public function SetTimeStamp($value)
  2539. {
  2540. $this->values['timeStamp'] = $value;
  2541. }
  2542. /**
  2543. * 获取支付时间戳的值
  2544. * @return 值
  2545. **/
  2546. public function GetTimeStamp()
  2547. {
  2548. return $this->values['timeStamp'];
  2549. }
  2550. /**
  2551. * 判断支付时间戳是否存在
  2552. * @return true 或 false
  2553. **/
  2554. public function IsTimeStampSet()
  2555. {
  2556. return array_key_exists('timeStamp', $this->values);
  2557. }
  2558. /**
  2559. * 随机字符串
  2560. * @param string $value
  2561. **/
  2562. public function SetNonceStr($value)
  2563. {
  2564. $this->values['nonceStr'] = $value;
  2565. }
  2566. /**
  2567. * 获取notify随机字符串值
  2568. * @return 值
  2569. **/
  2570. public function GetReturn_code()
  2571. {
  2572. return $this->values['nonceStr'];
  2573. }
  2574. /**
  2575. * 判断随机字符串是否存在
  2576. * @return true 或 false
  2577. **/
  2578. public function IsReturn_codeSet()
  2579. {
  2580. return array_key_exists('nonceStr', $this->values);
  2581. }
  2582. /**
  2583. * 设置订单详情扩展字符串
  2584. * @param string $value
  2585. **/
  2586. public function SetPackage($value)
  2587. {
  2588. $this->values['package'] = $value;
  2589. }
  2590. /**
  2591. * 获取订单详情扩展字符串的值
  2592. * @return 值
  2593. **/
  2594. public function GetPackage()
  2595. {
  2596. return $this->values['package'];
  2597. }
  2598. /**
  2599. * 判断订单详情扩展字符串是否存在
  2600. * @return true 或 false
  2601. **/
  2602. public function IsPackageSet()
  2603. {
  2604. return array_key_exists('package', $this->values);
  2605. }
  2606. /**
  2607. * 设置签名方式
  2608. * @param string $value
  2609. **/
  2610. public function SetSignType($value)
  2611. {
  2612. $this->values['signType'] = $value;
  2613. }
  2614. /**
  2615. * 获取签名方式
  2616. * @return 值
  2617. **/
  2618. public function GetSignType()
  2619. {
  2620. return $this->values['signType'];
  2621. }
  2622. /**
  2623. * 判断签名方式是否存在
  2624. * @return true 或 false
  2625. **/
  2626. public function IsSignTypeSet()
  2627. {
  2628. return array_key_exists('signType', $this->values);
  2629. }
  2630. /**
  2631. * 设置签名方式
  2632. * @param string $value
  2633. **/
  2634. public function SetPaySign($value)
  2635. {
  2636. $this->values['paySign'] = $value;
  2637. }
  2638. /**
  2639. * 获取签名方式
  2640. * @return 值
  2641. **/
  2642. public function GetPaySign()
  2643. {
  2644. return $this->values['paySign'];
  2645. }
  2646. /**
  2647. * 判断签名方式是否存在
  2648. * @return true 或 false
  2649. **/
  2650. public function IsPaySignSet()
  2651. {
  2652. return array_key_exists('paySign', $this->values);
  2653. }
  2654. }
  2655. /**
  2656. *
  2657. * 扫码支付模式一生成二维码参数
  2658. * @author widyhu
  2659. *
  2660. */
  2661. class WxPayBizPayUrl extends WxPayDataBase
  2662. {
  2663. /**
  2664. * 设置微信分配的公众账号ID
  2665. * @param string $value
  2666. **/
  2667. public function SetAppid($value)
  2668. {
  2669. $this->values['appid'] = $value;
  2670. }
  2671. /**
  2672. * 获取微信分配的公众账号ID的值
  2673. * @return 值
  2674. **/
  2675. public function GetAppid()
  2676. {
  2677. return $this->values['appid'];
  2678. }
  2679. /**
  2680. * 判断微信分配的公众账号ID是否存在
  2681. * @return true 或 false
  2682. **/
  2683. public function IsAppidSet()
  2684. {
  2685. return array_key_exists('appid', $this->values);
  2686. }
  2687. /**
  2688. * 设置微信支付分配的商户号
  2689. * @param string $value
  2690. **/
  2691. public function SetMch_id($value)
  2692. {
  2693. $this->values['mch_id'] = $value;
  2694. }
  2695. /**
  2696. * 获取微信支付分配的商户号的值
  2697. * @return 值
  2698. **/
  2699. public function GetMch_id()
  2700. {
  2701. return $this->values['mch_id'];
  2702. }
  2703. /**
  2704. * 判断微信支付分配的商户号是否存在
  2705. * @return true 或 false
  2706. **/
  2707. public function IsMch_idSet()
  2708. {
  2709. return array_key_exists('mch_id', $this->values);
  2710. }
  2711. /**
  2712. * 设置支付时间戳
  2713. * @param string $value
  2714. **/
  2715. public function SetTime_stamp($value)
  2716. {
  2717. $this->values['time_stamp'] = $value;
  2718. }
  2719. /**
  2720. * 获取支付时间戳的值
  2721. * @return 值
  2722. **/
  2723. public function GetTime_stamp()
  2724. {
  2725. return $this->values['time_stamp'];
  2726. }
  2727. /**
  2728. * 判断支付时间戳是否存在
  2729. * @return true 或 false
  2730. **/
  2731. public function IsTime_stampSet()
  2732. {
  2733. return array_key_exists('time_stamp', $this->values);
  2734. }
  2735. /**
  2736. * 设置随机字符串
  2737. * @param string $value
  2738. **/
  2739. public function SetNonce_str($value)
  2740. {
  2741. $this->values['nonce_str'] = $value;
  2742. }
  2743. /**
  2744. * 获取随机字符串的值
  2745. * @return 值
  2746. **/
  2747. public function GetNonce_str()
  2748. {
  2749. return $this->values['nonce_str'];
  2750. }
  2751. /**
  2752. * 判断随机字符串是否存在
  2753. * @return true 或 false
  2754. **/
  2755. public function IsNonce_strSet()
  2756. {
  2757. return array_key_exists('nonce_str', $this->values);
  2758. }
  2759. /**
  2760. * 设置商品ID
  2761. * @param string $value
  2762. **/
  2763. public function SetProduct_id($value)
  2764. {
  2765. $this->values['product_id'] = $value;
  2766. }
  2767. /**
  2768. * 获取商品ID的值
  2769. * @return 值
  2770. **/
  2771. public function GetProduct_id()
  2772. {
  2773. return $this->values['product_id'];
  2774. }
  2775. /**
  2776. * 判断商品ID是否存在
  2777. * @return true 或 false
  2778. **/
  2779. public function IsProduct_idSet()
  2780. {
  2781. return array_key_exists('product_id', $this->values);
  2782. }
  2783. }