mirror of
https://github.com/mojuncong/psi.git
synced 2025-10-06 04:55:43 +08:00
11 lines
No EOL
216 B
PHP
11 lines
No EOL
216 B
PHP
<?php
|
|
namespace Mobile\Service;
|
|
class GoodsQueryService {
|
|
public function warehouse(){
|
|
$sql="select code,name from t_warehouse";
|
|
$warehouse=M()->query($sql);
|
|
return $warehouse;
|
|
|
|
|
|
}
|
|
} |