Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
0df2b61a89
@ -1491,6 +1491,12 @@ class StoreOrderRepository extends BaseRepository
|
||||
]
|
||||
);
|
||||
if (!$res) throw new ValidateException('数据不存在');
|
||||
if(in_array($res['source'],[13])){
|
||||
$res['bank_info']=Db::name('merchant_intention')->where('status',1)->where('uid',$res['uid'])->field('company_name,bank_username,bank_opening,bank_code')->find();
|
||||
}else{
|
||||
$res['bank_info']=[];
|
||||
}
|
||||
|
||||
$res['integral'] = (int)$res['integral'];
|
||||
return $res->append(['refund_extension_one', 'refund_extension_two']);
|
||||
}
|
||||
|
@ -541,7 +541,7 @@ class ProductRepository extends BaseRepository
|
||||
{
|
||||
$result = [];
|
||||
foreach ($data as $value) {
|
||||
if (is_int($value)||$value['category']) {
|
||||
if (is_int($value) || $value['category']) {
|
||||
$result[] = [
|
||||
'product_id' => $productId,
|
||||
'mer_cate_id' => $value,
|
||||
@ -1939,13 +1939,13 @@ class ProductRepository extends BaseRepository
|
||||
} else {
|
||||
//加入购物车
|
||||
//购物车现有
|
||||
$_num = $this->productOnceCountCart($where['product_id'], $data['product_attr_unique'], $userInfo->uid, $data['product_type'],$data['source']);
|
||||
$_num = $this->productOnceCountCart($where['product_id'], $data['product_attr_unique'], $userInfo->uid, $data['product_type'], $data['source']);
|
||||
$cart_num = $_num + $data['cart_num'];
|
||||
}
|
||||
if ($sku['stock'] < $cart_num) throw new ValidateException('库存不足');
|
||||
//添加购物车
|
||||
if (!$data['is_new']) {
|
||||
$cart = app()->make(StoreCartRepository::class)->getCartByProductSku($data['product_attr_unique'], $userInfo->uid, $data['product_type'],$data['source']);
|
||||
$cart = app()->make(StoreCartRepository::class)->getCartByProductSku($data['product_attr_unique'], $userInfo->uid, $data['product_type'], $data['source']);
|
||||
}
|
||||
return compact('product', 'sku', 'cart');
|
||||
}
|
||||
@ -1958,7 +1958,7 @@ class ProductRepository extends BaseRepository
|
||||
* @author Qinii
|
||||
* @day 5/26/21
|
||||
*/
|
||||
public function productOnceCountCart($productId, $product_attr_unique, $uid, $product_type = 0,$source=0)
|
||||
public function productOnceCountCart($productId, $product_attr_unique, $uid, $product_type = 0, $source = 0)
|
||||
{
|
||||
$make = app()->make(StoreCartRepository::class);
|
||||
$where = [
|
||||
@ -1970,7 +1970,7 @@ class ProductRepository extends BaseRepository
|
||||
'product_id' => $productId,
|
||||
'uid' => $uid,
|
||||
'product_attr_unique' => $product_attr_unique,
|
||||
'source'=>$source
|
||||
'source' => $source
|
||||
];
|
||||
$cart_num = $make->getSearch($where)->sum('cart_num');
|
||||
return $cart_num;
|
||||
@ -2575,4 +2575,43 @@ class ProductRepository extends BaseRepository
|
||||
);
|
||||
return compact('count', 'list');
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加商品到云市场
|
||||
*/
|
||||
public function add_cloud_product($data, $merchant)
|
||||
{
|
||||
if ($data['is_del'] == 1) {
|
||||
return Db::name('cloud_product')->where('product_id', $data['product_id'])->delete();
|
||||
}
|
||||
if ($data['product_id'] && $data['type']) {
|
||||
switch ($data['type']) {
|
||||
case 'two':
|
||||
$data['type'] = 6;
|
||||
break;
|
||||
case 'three':
|
||||
$data['mer_id'] = 7;
|
||||
case 'seven':
|
||||
$data['type'] = 8;
|
||||
}
|
||||
$datas = [
|
||||
'product_id' => $data['product_id'],
|
||||
'mer_id' => $merchant['mer_id'],
|
||||
'source_mer_id' => 0,
|
||||
'street_code' => $merchant['street_id'],
|
||||
'type_id' => $merchant['type_id'],
|
||||
'category_id' => $merchant['category_id'],
|
||||
'weight' => 1,
|
||||
'status' => 1,
|
||||
'create_time' => date('Y-m-d H:i:s'),
|
||||
'mer_labels' => ',' . $data['type'] . ',',
|
||||
];
|
||||
$res= Db::name('cloud_product')->where('product_id',$data['product_id'])->where('mer_id',$merchant['mer_id'])->find();
|
||||
if($res){
|
||||
throw new ValidateException('该商品已设置过');
|
||||
}
|
||||
return Db::name('cloud_product')->insert($datas);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -369,10 +369,11 @@ class Auth extends BaseController
|
||||
|
||||
if ($store_service) {
|
||||
$mer_arr = Db::name('merchant')->where('mer_id', $store_service['mer_id'])->where('is_del', 0)->field('type_id,mer_avatar,mer_banner,business_status,mer_info,category_id,service_phone,mer_address,uid,mer_name,create_time,update_time,mer_settlement_agree_status,is_margin,street_id')->find();
|
||||
$bank_info = Db::name('merchant_intention')->where('mer_id', $store_service['mer_id'])->field('company_name,bank_username,bank_opening,bank_code')->find();
|
||||
if ($mer_arr && $mer_arr['mer_avatar'] != '' && $mer_arr['mer_banner'] != '' && $mer_arr['mer_info'] && $mer_arr['service_phone'] != '' && $mer_arr['mer_address'] != '') {
|
||||
$data['is_wsxx'] = 1;
|
||||
}
|
||||
$data['mer_info'] = $mer_arr;
|
||||
$data['mer_info'] = array_merge($mer_arr,$bank_info);
|
||||
$typCode = Db::name('merchant_type')->where('mer_type_id', $mer_arr['type_id'] ?? 0)->value('type_code');
|
||||
$data['mer_info']['type_code'] = $typCode;
|
||||
$data['mer_info']['setting_status'] = 0;
|
||||
|
@ -48,7 +48,13 @@ use think\facade\Cache;
|
||||
use think\facade\Db;
|
||||
use think\facade\Log;
|
||||
use think\Response;
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Ocr;
|
||||
use AlibabaCloud\Tea\Exception\TeaError;
|
||||
use AlibabaCloud\Tea\Utils\Utils;
|
||||
|
||||
use Darabonba\OpenApi\Models\Config;
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseRequest;
|
||||
use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
|
||||
/**
|
||||
* Class Common
|
||||
* @package app\controller\api
|
||||
@ -543,4 +549,48 @@ class Common extends BaseController
|
||||
return app('json')->success($data);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* 商户营业执照
|
||||
*/
|
||||
public function merchant_license_identify($image){
|
||||
$config = new Config([
|
||||
// 必填,您的 AccessKey ID
|
||||
"accessKeyId" => 'LTAI5t7mhH3ij2cNWs1zhPmv',
|
||||
// 必填,您的 AccessKey Secret
|
||||
"accessKeySecret" => 'gqo2wMpvi8h5bDBmCpMje6BaiXvcPu'
|
||||
]);
|
||||
// Endpoint 请参考 https://api.aliyun.com/product/ocr
|
||||
$config->endpoint = "ocr.cn-shanghai.aliyuncs.com";
|
||||
$client= new Ocr($config);
|
||||
$recognizeBusinessLicenseRequest = new RecognizeBusinessLicenseRequest([
|
||||
"imageURL" => $image
|
||||
]);
|
||||
$runtime = new RuntimeOptions([]);
|
||||
try {
|
||||
// 复制代码运行请自行打印 API 的返回值
|
||||
$resp=$client->recognizeBusinessLicenseWithOptions($recognizeBusinessLicenseRequest, $runtime);
|
||||
$a= Utils::toArray($resp->body);
|
||||
$data=[];
|
||||
if($a){
|
||||
$data['address']=$a['Data']['Address'];
|
||||
$data['business']=$a['Data']['Business'];
|
||||
$data['legal_person']=$a['Data']['LegalPerson'];
|
||||
$data['name']=$a['Data']['Name'];
|
||||
$data['register_number']=$a['Data']['RegisterNumber'];
|
||||
$data['type']=$a['Data']['Type'];
|
||||
}
|
||||
return app('json')->success($data);
|
||||
|
||||
}
|
||||
catch (Exception $error) {
|
||||
if (!($error instanceof TeaError)) {
|
||||
$error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
|
||||
}
|
||||
$a=Utils::assertAsString($error->message);
|
||||
return app('json')->fail($a);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -256,4 +256,35 @@ class StoreProduct extends BaseController
|
||||
return app('json')->fail('入库失败');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 商户添加商品到云仓
|
||||
*/
|
||||
public function add_cloud_product()
|
||||
{
|
||||
$data = $this->request->params(['product_id', 'type', 'is_del']);
|
||||
$merchant = app()->make(MerchantRepository::class)->search(['mer_id' => $this->merId,])->find();
|
||||
$res = $this->repository->add_cloud_product($data, $merchant);
|
||||
if ($res) {
|
||||
return app('json')->success('设置成功');
|
||||
} else {
|
||||
return app('json')->fail('设置失败');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 云仓商品列表
|
||||
*/
|
||||
public function cloud_product_list(){
|
||||
[$page, $limit] = $this->getPage();
|
||||
$merchant = app()->make(MerchantRepository::class)->search(['mer_id' => $this->merId,])->find();
|
||||
$product_ids=Db::name('cloud_product')->where('mer_id',$this->merId())
|
||||
->page($page)->limit($limit)->column('product_id');
|
||||
$select = Db::name('store_product')->where('mer_id', $this->merId())->whereIn('product_id',$product_ids)->select()->toArray();
|
||||
$count = Db::name('cloud_product')->where('mer_id',$merchant['mer_id'])->count();
|
||||
return app('json')->success(['list'=>$select,'count'=>$count]);
|
||||
}
|
||||
}
|
||||
|
@ -268,15 +268,16 @@ class Merchant extends BaseController
|
||||
if (empty($id)) {
|
||||
return app('json')->fail('参数错误');
|
||||
}
|
||||
$merchant = app()->make(MerchantRepository::class)->search(['mer_id' => $id])->find();
|
||||
|
||||
$data = Db::name('merchant')->where('mer_id', $id)->find();
|
||||
$data['mer_certificate'] = merchantConfig($id, 'mer_certificate');
|
||||
$data['mer_certificate'] = $data['mer_certificate'][0] ?? '';
|
||||
// $append = ['merchantCategory', 'merchantType', 'mer_certificate'];
|
||||
// if ($merchant['is_margin'] == -10)
|
||||
// $append[] = 'refundMarginOrder';
|
||||
// $data = Db::name('merchant')->where('mer_id', $id)->find();
|
||||
$merchant['mer_certificate'] = merchantConfig($id, 'mer_certificate');
|
||||
// $data['mer_certificate'] = $data['mer_certificate'][0] ?? '';
|
||||
$append = ['merchantCategory', 'merchantType', 'mer_certificate'];
|
||||
if ($merchant['is_margin'] == -10)
|
||||
$append[] = 'refundMarginOrder';
|
||||
|
||||
// $data = $merchant->append($append)->hidden(['mark', 'reg_admin_id', 'sort'])->toArray();
|
||||
$data = $merchant->append($append)->hidden(['mark', 'reg_admin_id', 'sort','financial_bank'])->toArray();
|
||||
$delivery = $repository->get($id) + systemConfig(['tx_map_key']);
|
||||
$data = array_merge($data, $delivery);
|
||||
$data['sys_bases_status'] = systemConfig('sys_bases_status') === '0' ? 0 : 1;
|
||||
|
@ -143,7 +143,7 @@ class MerchantIntention extends BaseController
|
||||
'cardno_back',
|
||||
]);
|
||||
|
||||
if (empty($data['bank_username']) || empty($data['bank_opening']) || empty($data['bank_front']) || empty($data['bank_back']) || empty($data['cardno_front']) || empty($data['cardno_back'])) {
|
||||
if (empty($data['bank_username']) || empty($data['bank_opening'])||empty($data['bank_code'])) {
|
||||
return app('json')->fail('请完善银行卡及身份信息');
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@ class CloudWarehouse extends BaseController
|
||||
* @param SpuRepository $repository
|
||||
* @param MerchantDao $merchantDao
|
||||
*/
|
||||
public function __construct(App $app, MerchantDao $merchantDao, SpuRepository $spuRepository,SpuDao $SpuDao)
|
||||
public function __construct(App $app, MerchantDao $merchantDao, SpuRepository $spuRepository, SpuDao $SpuDao)
|
||||
{
|
||||
parent::__construct($app);
|
||||
$this->merchantDao = $merchantDao;
|
||||
@ -43,28 +43,43 @@ class CloudWarehouse extends BaseController
|
||||
* type_id 13云仓商品列表
|
||||
* @return mixed
|
||||
*/
|
||||
public function index($street_code, $page = 1, $category_id = 0,$location='')
|
||||
public function index($street_code, $page = 1, $category_id = 0, $location = '')
|
||||
{
|
||||
$cloud_product = Db::name('cloud_product')
|
||||
->where('cate_id',$category_id)
|
||||
->where('street_code', $street_code)->where('status', 1)->page($page)->column('product_id');
|
||||
$cloud_product_arr = Db::name('cloud_product')
|
||||
->where('cate_id', $category_id)
|
||||
->whereOR('street_code', $street_code)->whereOR('mer_labels', ',6,')->where('status', 1)->page($page)->field('product_id,mer_labels')->select();
|
||||
$cloud_product = [];
|
||||
foreach ($cloud_product_arr as $key => $value) {
|
||||
$cloud_product[] = $value['product_id'];
|
||||
}
|
||||
$where = [
|
||||
'is_show' => 1,
|
||||
'is_used' => 1,
|
||||
'status' => 1,
|
||||
'is_del' => 0,
|
||||
'mer_status' => 1,
|
||||
'product_type'=>98,
|
||||
'product_id'=>$cloud_product
|
||||
'product_type' => 98,
|
||||
'product_id' => $cloud_product
|
||||
];
|
||||
if (!$cloud_product && $category_id==0) {
|
||||
if (!$cloud_product && $category_id == 0) {
|
||||
return app('json')->success(['count' => 0, 'list' => []]);
|
||||
}
|
||||
$count = Db::name('cloud_product')->where('street_code', $street_code)->where('status', 1)->count();
|
||||
|
||||
$products = $this->spuRepository->getApiSearch($where,$page,10, false,true);
|
||||
if($products['list']){
|
||||
$list=$products['list'];
|
||||
$count = Db::name('cloud_product')->whereOR('street_code', $street_code)->whereOR('mer_labels', ',6,')->where('status', 1)->count();
|
||||
|
||||
$products = $this->spuRepository->getApiSearch($where, $page, 10, false, true);
|
||||
if ($products['list']) {
|
||||
$list = $products['list'];
|
||||
foreach ($cloud_product_arr as $key => $value) {
|
||||
foreach ($list as $k => $v) {
|
||||
if ($value['product_id'] == $v['product_id']) {
|
||||
if ($value['mer_labels'] == ',6,') {
|
||||
$list[$k]['mer_labels_name'] = '五日达';
|
||||
} else {
|
||||
$list[$k]['mer_labels_name'] = '次日达';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return app('json')->success(['count' => $count, 'list' => $list]);
|
||||
}
|
||||
@ -75,10 +90,10 @@ class CloudWarehouse extends BaseController
|
||||
*/
|
||||
public function town()
|
||||
{
|
||||
$params = $this->request->params(['category_id', 'street_code', 'order', ['product_type', 0], 'keyword', 'page','cate_pid']);
|
||||
$params = $this->request->params(['category_id', 'street_code', 'order', ['product_type', 0], 'keyword', 'page', 'cate_pid']);
|
||||
$search = [
|
||||
'street_id' => $params['street_code'],
|
||||
'type_id' =>[Merchant::TypeStore,Merchant::TypeTownSupplyChain],
|
||||
'type_id' => [Merchant::TypeStore, Merchant::TypeTownSupplyChain],
|
||||
'status' => 1,
|
||||
'is_del' => 0,
|
||||
'mer_state' => 1,
|
||||
@ -101,10 +116,10 @@ class CloudWarehouse extends BaseController
|
||||
if (!empty($params['category_id'])) {
|
||||
$where['cate_id'] = $params['category_id'];
|
||||
}
|
||||
if($params['cate_pid']!=''){
|
||||
if ($params['cate_pid'] != '') {
|
||||
$where['cate_pid'] = $params['cate_pid'];
|
||||
}
|
||||
$products = $this->spuRepository->getApiSearch($where, $page, $limit, false,true);
|
||||
$products = $this->spuRepository->getApiSearch($where, $page, $limit, false, true);
|
||||
return app('json')->success($products);
|
||||
}
|
||||
}
|
||||
|
@ -59,7 +59,8 @@ class StoreSpu extends BaseController
|
||||
'product_ids',
|
||||
'mer_id',
|
||||
'type_id',
|
||||
'street_id'
|
||||
'street_id',
|
||||
'category_id'
|
||||
]);
|
||||
if ($where['type_id']) {
|
||||
$arr = ['status' => 1, 'mer_state' => 1, 'is_del' => 0];
|
||||
@ -74,6 +75,9 @@ class StoreSpu extends BaseController
|
||||
$where['product_type'] = $where['product_type']??0;
|
||||
$where['order'] = $where['order'] ?: 'star';
|
||||
if ($where['is_trader'] != 1) unset($where['is_trader']);
|
||||
if($where['category_id']!=''){
|
||||
$where['mer_ids']= Db::name('merchant')->where(['category_id'=>$where['category_id'],'status'=>1,'is_del'=>0])->column('mer_id');
|
||||
}
|
||||
$data = $this->repository->getApiSearch($where, $page, $limit, $this->userInfo);
|
||||
return app('json')->success($data);
|
||||
}
|
||||
|
@ -29,14 +29,14 @@ use think\facade\Db;
|
||||
|
||||
class Product extends BaseController
|
||||
{
|
||||
protected $repository ;
|
||||
protected $repository;
|
||||
|
||||
/**
|
||||
* Product constructor.
|
||||
* @param App $app
|
||||
* @param repository $repository
|
||||
*/
|
||||
public function __construct(App $app ,repository $repository)
|
||||
public function __construct(App $app, repository $repository)
|
||||
{
|
||||
parent::__construct($app);
|
||||
$this->repository = $repository;
|
||||
@ -50,17 +50,17 @@ class Product extends BaseController
|
||||
public function lst()
|
||||
{
|
||||
[$page, $limit] = $this->getPage();
|
||||
$where = $this->request->params(['temp_id','cate_id','keyword',['type',1],'mer_cate_id','is_gift_bag','status','us_status','product_id','mer_labels',['order','sort'],'is_ficti','svip_price_type']);
|
||||
$where = array_merge($where,$this->repository->switchType($where['type'],$this->request->merId(),0));
|
||||
$type=$this->request->merchant()['type_id'];
|
||||
$typeCode=Db::name('merchant_type')->where('mer_type_id',$type)->value('type_code');
|
||||
$product_type=0;
|
||||
$where = $this->request->params(['temp_id', 'cate_id', 'keyword', ['type', 1], 'mer_cate_id', 'is_gift_bag', 'status', 'us_status', 'product_id', 'mer_labels', ['order', 'sort'], 'is_ficti', 'svip_price_type']);
|
||||
$where = array_merge($where, $this->repository->switchType($where['type'], $this->request->merId(), 0));
|
||||
$type = $this->request->merchant()['type_id'];
|
||||
$typeCode = Db::name('merchant_type')->where('mer_type_id', $type)->value('type_code');
|
||||
$product_type = 0;
|
||||
|
||||
// if ($type==12){
|
||||
if ($typeCode==Merchant::TypeCode['TypeSupplyChain']){
|
||||
$where['product_type']=98;//供应链
|
||||
if ($typeCode == Merchant::TypeCode['TypeSupplyChain']) {
|
||||
$where['product_type'] = 98; //供应链
|
||||
}
|
||||
return app('json')->success($this->repository->getList($this->request->merId(),$where, $page, $limit));
|
||||
return app('json')->success($this->repository->getList($this->request->merId(), $where, $page, $limit));
|
||||
}
|
||||
|
||||
/**
|
||||
@ -71,9 +71,9 @@ class Product extends BaseController
|
||||
*/
|
||||
public function detail($id)
|
||||
{
|
||||
if(!$this->repository->merExists($this->request->merId(),$id))
|
||||
if (!$this->repository->merExists($this->request->merId(), $id))
|
||||
return app('json')->fail('数据不存在');
|
||||
return app('json')->success($this->repository->getAdminOneProduct($id,null));
|
||||
return app('json')->success($this->repository->getAdminOneProduct($id, null));
|
||||
}
|
||||
|
||||
/**
|
||||
@ -85,7 +85,7 @@ class Product extends BaseController
|
||||
public function create()
|
||||
{
|
||||
$params = $this->request->params($this->repository::CREATE_PARAMS);
|
||||
$data = $this->repository->checkParams($params,$this->request->merId());
|
||||
$data = $this->repository->checkParams($params, $this->request->merId());
|
||||
// $cate_id=StoreCategory::where('pid',$data['cate_id'])->where('level',2)->value('store_category_id');
|
||||
// if(!$cate_id){
|
||||
// return app('json')->fail('请先添加第三级分类');
|
||||
@ -97,15 +97,15 @@ class Product extends BaseController
|
||||
$data['status'] = $this->request->merchant()->is_audit ? 0 : 1;
|
||||
$data['mer_status'] = ($this->request->merchant()->is_del || !$this->request->merchant()->mer_state || !$this->request->merchant()->status) ? 0 : 1;
|
||||
$data['rate'] = 3;
|
||||
$typeCode=Db::name('merchant_type')->where('mer_type_id',$this->request->merchant()->type_id)->value('type_code');
|
||||
$typeCode = Db::name('merchant_type')->where('mer_type_id', $this->request->merchant()->type_id)->value('type_code');
|
||||
// if ($this->request->merchant()->type_id==12){
|
||||
if ($typeCode==Merchant::TypeCode['TypeSupplyChain']){
|
||||
$product_type=98;//供应链
|
||||
}else{
|
||||
$product_type=0;//普通商品
|
||||
if ($typeCode == Merchant::TypeCode['TypeSupplyChain']) {
|
||||
$product_type = 98; //供应链
|
||||
} else {
|
||||
$product_type = 0; //普通商品
|
||||
}
|
||||
$data['update_time'] = date('Y-m-d H:i:s');
|
||||
$this->repository->create($data,$product_type,1);
|
||||
$this->repository->create($data, $product_type, 1);
|
||||
return app('json')->success('添加成功');
|
||||
}
|
||||
|
||||
@ -119,7 +119,7 @@ class Product extends BaseController
|
||||
public function update($id)
|
||||
{
|
||||
$params = $this->request->params($this->repository::CREATE_PARAMS);
|
||||
$data = $this->repository->checkParams($params,$this->request->merId(), $id);
|
||||
$data = $this->repository->checkParams($params, $this->request->merId(), $id);
|
||||
if (!$this->repository->merExists($this->request->merId(), $id))
|
||||
return app('json')->fail('数据不存在');
|
||||
$pro = $this->repository->getWhere(['product_id' => $id]);
|
||||
@ -133,7 +133,7 @@ class Product extends BaseController
|
||||
$data['update_time'] = date('Y-m-d H:i:s');
|
||||
$typeSupplyChainId = Db::name('MerchantType')->where('type_code', Merchant::TypeCode['TypeSupplyChain'])->value('mer_type_id');
|
||||
$productType = $this->request->merchant()->type_id == $typeSupplyChainId ? 98 : 0;
|
||||
$this->repository->edit($id, $data, $this->request->merId(), $productType,1);
|
||||
$this->repository->edit($id, $data, $this->request->merId(), $productType, 1);
|
||||
return app('json')->success('编辑成功');
|
||||
}
|
||||
|
||||
@ -145,9 +145,9 @@ class Product extends BaseController
|
||||
*/
|
||||
public function delete($id)
|
||||
{
|
||||
if(!$this->repository->merExists($this->request->merId(),$id))
|
||||
if (!$this->repository->merExists($this->request->merId(), $id))
|
||||
return app('json')->fail('数据不存在');
|
||||
if($this->repository->getWhereCount(['product_id' => $id,'is_show' => 1,'status' => 1]))
|
||||
if ($this->repository->getWhereCount(['product_id' => $id, 'is_show' => 1, 'status' => 1]))
|
||||
return app('json')->fail('商品上架中');
|
||||
$this->repository->delete($id);
|
||||
//queue(ChangeSpuStatusJob::class,['product_type' => 0,'id' => $id]);
|
||||
@ -157,9 +157,9 @@ class Product extends BaseController
|
||||
|
||||
public function destory($id)
|
||||
{
|
||||
if(!$this->repository->merDeleteExists($this->request->merId(),$id))
|
||||
if (!$this->repository->merDeleteExists($this->request->merId(), $id))
|
||||
return app('json')->fail('只能删除回收站的商品');
|
||||
if(app()->make(StoreCartRepository::class)->getProductById($id))
|
||||
if (app()->make(StoreCartRepository::class)->getProductById($id))
|
||||
return app('json')->fail('商品有被加入购物车不可删除');
|
||||
$this->repository->destory($id);
|
||||
return app('json')->success('删除成功');
|
||||
@ -174,14 +174,14 @@ class Product extends BaseController
|
||||
*/
|
||||
public function getStatusFilter()
|
||||
{
|
||||
$type=$this->request->merchant()['type_id'];
|
||||
$product_type=0;
|
||||
$typeCode=Db::name('merchant_type')->where('mer_type_id',$type)->value('type_code');
|
||||
$type = $this->request->merchant()['type_id'];
|
||||
$product_type = 0;
|
||||
$typeCode = Db::name('merchant_type')->where('mer_type_id', $type)->value('type_code');
|
||||
// if ($type==12){
|
||||
if ($typeCode==Merchant::TypeCode['TypeSupplyChain']){
|
||||
$product_type=98;//供应链
|
||||
if ($typeCode == Merchant::TypeCode['TypeSupplyChain']) {
|
||||
$product_type = 98; //供应链
|
||||
}
|
||||
return app('json')->success($this->repository->getFilter($this->request->merId(),'商品',$product_type));
|
||||
return app('json')->success($this->repository->getFilter($this->request->merId(), '商品', $product_type));
|
||||
}
|
||||
|
||||
/**
|
||||
@ -192,10 +192,10 @@ class Product extends BaseController
|
||||
*/
|
||||
public function config()
|
||||
{
|
||||
$data = systemConfig(['extension_status','svip_switch_status','integral_status']);
|
||||
$merData= merchantConfig($this->request->merId(),['mer_integral_status','mer_integral_rate','mer_svip_status','svip_store_rate']);
|
||||
$svip_store_rate = $merData['svip_store_rate'] > 0 ? bcdiv($merData['svip_store_rate'],100,2) : 0;
|
||||
$data['mer_svip_status'] = ($data['svip_switch_status'] && $merData['mer_svip_status'] != 0 ) ? 1 : 0;
|
||||
$data = systemConfig(['extension_status', 'svip_switch_status', 'integral_status']);
|
||||
$merData = merchantConfig($this->request->merId(), ['mer_integral_status', 'mer_integral_rate', 'mer_svip_status', 'svip_store_rate']);
|
||||
$svip_store_rate = $merData['svip_store_rate'] > 0 ? bcdiv($merData['svip_store_rate'], 100, 2) : 0;
|
||||
$data['mer_svip_status'] = ($data['svip_switch_status'] && $merData['mer_svip_status'] != 0) ? 1 : 0;
|
||||
$data['svip_store_rate'] = $svip_store_rate;
|
||||
$data['integral_status'] = $data['integral_status'] && $merData['mer_integral_status'] ? 1 : 0;
|
||||
$data['integral_rate'] = $merData['mer_integral_rate'] ?: 0;
|
||||
@ -213,7 +213,7 @@ class Product extends BaseController
|
||||
*/
|
||||
public function restore($id)
|
||||
{
|
||||
if(!$this->repository->merDeleteExists($this->request->merId(),$id))
|
||||
if (!$this->repository->merDeleteExists($this->request->merId(), $id))
|
||||
return app('json')->fail('只能恢复回收站的商品');
|
||||
$this->repository->restore($id);
|
||||
return app('json')->success('商品已恢复');
|
||||
@ -235,7 +235,7 @@ class Product extends BaseController
|
||||
public function updateSort($id)
|
||||
{
|
||||
$sort = $this->request->param('sort');
|
||||
$this->repository->updateSort($id,$this->request->merId(),['sort' => $sort]);
|
||||
$this->repository->updateSort($id, $this->request->merId(), ['sort' => $sort]);
|
||||
return app('json')->success('修改成功');
|
||||
}
|
||||
|
||||
@ -265,7 +265,7 @@ class Product extends BaseController
|
||||
public function setLabels($id)
|
||||
{
|
||||
$data = $this->request->params(['mer_labels']);
|
||||
app()->make(SpuRepository::class)->setLabels($id,0,$data,$this->request->merId());
|
||||
app()->make(SpuRepository::class)->setLabels($id, 0, $data, $this->request->merId());
|
||||
return app('json')->success('修改成功');
|
||||
}
|
||||
|
||||
@ -279,7 +279,7 @@ class Product extends BaseController
|
||||
{
|
||||
$params = [
|
||||
"mer_cate_id",
|
||||
"sort" ,
|
||||
"sort",
|
||||
"is_show",
|
||||
"is_good",
|
||||
"attr",
|
||||
@ -291,12 +291,12 @@ class Product extends BaseController
|
||||
// $count = app()->make(StoreCategoryRepository::class)->getWhereCount(['store_category_id' => $data['mer_cate_id'],'is_show' => 1,'mer_id' => $this->request->merId()]);
|
||||
// if (!$count) throw new ValidateException('商户分类不存在或不可用');
|
||||
$data['status'] = 1;
|
||||
$res=$this->repository->freeTrial($id, $data,$this->request->merId());
|
||||
if($res && $params['is_stock']==1){
|
||||
$arr=[
|
||||
'mer_id'=>$this->request->merId(),
|
||||
'product_id'=>$data['attrValue'][0]['product_id'],
|
||||
'create_time'=>date('Y-m-d H:i:s')
|
||||
$res = $this->repository->freeTrial($id, $data, $this->request->merId());
|
||||
if ($res && $params['is_stock'] == 1) {
|
||||
$arr = [
|
||||
'mer_id' => $this->request->merId(),
|
||||
'product_id' => $data['attrValue'][0]['product_id'],
|
||||
'create_time' => date('Y-m-d H:i:s')
|
||||
];
|
||||
Db::name('store_product_stock')->insert($arr);
|
||||
}
|
||||
@ -313,7 +313,7 @@ class Product extends BaseController
|
||||
public function switchStatus($id)
|
||||
{
|
||||
$status = $this->request->param('status', 0) == 1 ? 1 : 0;
|
||||
$this->repository->switchShow($id, $status,'is_show',$this->request->merId());
|
||||
$this->repository->switchShow($id, $status, 'is_show', $this->request->merId());
|
||||
return app('json')->success('修改成功');
|
||||
}
|
||||
|
||||
@ -329,7 +329,7 @@ class Product extends BaseController
|
||||
$ids = $this->request->param('ids');
|
||||
if (empty($ids)) return app('json')->fail('请选择商品');
|
||||
$status = $this->request->param('status') == 1 ? 1 : 0;
|
||||
$this->repository->batchSwitchShow($ids,$status,'is_show',$this->request->merId());
|
||||
$this->repository->batchSwitchShow($ids, $status, 'is_show', $this->request->merId());
|
||||
return app('json')->success('修改成功');
|
||||
}
|
||||
|
||||
@ -342,7 +342,7 @@ class Product extends BaseController
|
||||
public function batchTemplate()
|
||||
{
|
||||
$ids = $this->request->param('ids');
|
||||
$ids = is_array($ids) ? $ids : explode(',',$ids);
|
||||
$ids = is_array($ids) ? $ids : explode(',', $ids);
|
||||
$data = $this->request->params(['temp_id']);
|
||||
if (empty($ids)) return app('json')->fail('请选择商品');
|
||||
if (empty($data['temp_id'])) return app('json')->fail('请选择运费模板');
|
||||
@ -351,7 +351,7 @@ class Product extends BaseController
|
||||
if (!$make->merInExists($this->request->merId(), [$data['temp_id']]))
|
||||
return app('json')->fail('请选择您自己的运费模板');
|
||||
$data['delivery_free'] = 0;
|
||||
$this->repository->updates($ids,$data);
|
||||
$this->repository->updates($ids, $data);
|
||||
return app('json')->success('修改成功');
|
||||
}
|
||||
|
||||
@ -368,7 +368,7 @@ class Product extends BaseController
|
||||
if (empty($ids)) return app('json')->fail('请选择商品');
|
||||
if (!$this->repository->merInExists($this->request->merId(), $ids))
|
||||
return app('json')->fail('请选择您自己商品');
|
||||
app()->make(SpuRepository::class)->batchLabels($ids, $data,$this->request->merId());
|
||||
app()->make(SpuRepository::class)->batchLabels($ids, $data, $this->request->merId());
|
||||
return app('json')->success('修改成功');
|
||||
}
|
||||
|
||||
@ -385,7 +385,7 @@ class Product extends BaseController
|
||||
if (empty($ids)) return app('json')->fail('请选择商品');
|
||||
if (!$this->repository->merInExists($this->request->merId(), $ids))
|
||||
return app('json')->fail('请选择您自己商品');
|
||||
$this->repository->updates($ids,$data);
|
||||
$this->repository->updates($ids, $data);
|
||||
return app('json')->success('修改成功');
|
||||
}
|
||||
|
||||
@ -399,37 +399,66 @@ class Product extends BaseController
|
||||
public function batchExtension(ProductAttrValueRepository $repository)
|
||||
{
|
||||
$ids = $this->request->param('ids');
|
||||
$data = $this->request->params(['extension_one','extension_two']);
|
||||
$data = $this->request->params(['extension_one', 'extension_two']);
|
||||
if ($data['extension_one'] > 1 || $data['extension_one'] < 0 || $data['extension_two'] < 0 || $data['extension_two'] > 1) {
|
||||
return app('json')->fail('比例0~1之间');
|
||||
}
|
||||
if (empty($ids)) return app('json')->fail('请选择商品');
|
||||
if (!$this->repository->merInExists($this->request->merId(), $ids))
|
||||
return app('json')->fail('请选择您自己商品');
|
||||
$repository->updatesExtension($ids,$data);
|
||||
$repository->updatesExtension($ids, $data);
|
||||
return app('json')->success('修改成功');
|
||||
}
|
||||
|
||||
public function batchSvipType()
|
||||
{
|
||||
$ids = $this->request->param('ids');
|
||||
$data = $this->request->params([['svip_price_type',0]]);
|
||||
$data = $this->request->params([['svip_price_type', 0]]);
|
||||
|
||||
if (empty($ids)) return app('json')->fail('请选择商品');
|
||||
if (!$this->repository->merInExists($this->request->merId(), $ids))
|
||||
return app('json')->fail('请选择您自己商品');
|
||||
$this->repository->updates($ids,$data);
|
||||
$this->repository->updates($ids, $data);
|
||||
return app('json')->success('修改成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 导入商品列表管理
|
||||
*/
|
||||
public function xlsx_import_list(){
|
||||
public function xlsx_import_list()
|
||||
{
|
||||
[$page, $limit] = $this->getPage();
|
||||
$select=Db::name('store_product_import')->where('mer_id',$this->request->merId())->page($page)->limit($limit)->select()->toArray();
|
||||
$count=Db::name('store_product_import')->where('mer_id',$this->request->merId())->count();
|
||||
return app('json')->success(['list'=>$select,'count'=>$count]);
|
||||
|
||||
$select = Db::name('store_product_import')->where('mer_id', $this->request->merId())->page($page)->limit($limit)->select()->toArray();
|
||||
$count = Db::name('store_product_import')->where('mer_id', $this->request->merId())->count();
|
||||
return app('json')->success(['list' => $select, 'count' => $count]);
|
||||
}
|
||||
|
||||
/**
|
||||
* 商户添加商品到云仓
|
||||
*/
|
||||
public function add_cloud_product()
|
||||
{
|
||||
$data = $this->request->params(['product_id', 'type', 'is_del']);
|
||||
$res = $this->repository->add_cloud_product($data, $this->request->merchant());
|
||||
if ($res) {
|
||||
return app('json')->success('设置成功');
|
||||
} else {
|
||||
return app('json')->fail('设置失败');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 云仓商品列表
|
||||
*/
|
||||
public function cloud_product_list(){
|
||||
[$page, $limit] = $this->getPage();
|
||||
|
||||
$product_ids=Db::name('cloud_product')->where('mer_id',$this->request->merId())
|
||||
->page($page)->limit($limit)->column('product_id');
|
||||
$select = Db::name('store_product')->where('mer_id', $this->request->merId())->whereIn('product_id',$product_ids)->select()->toArray();
|
||||
$count = Db::name('cloud_product')->where('mer_id',$this->request->merId())->count();
|
||||
return app('json')->success(['list'=>$select,'count'=>$count]);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -60,7 +60,8 @@
|
||||
"topthink/think-api": "1.0.27",
|
||||
"intervention/image": "^2.7",
|
||||
"fastknife/ajcaptcha": "^1.2",
|
||||
"nelexa/zip": "^4.0"
|
||||
"nelexa/zip": "^4.0",
|
||||
"alibabacloud/ocr-20191230": "^3.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/var-dumper": "^4.2",
|
||||
|
256
composer.lock
generated
256
composer.lock
generated
@ -4,7 +4,7 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "60838a051e04cfb13dd75049f7540171",
|
||||
"content-hash": "58b44ebbb4f75dc8b47bcaa0ae8327f7",
|
||||
"packages": [
|
||||
{
|
||||
"name": "adbario/php-dot-notation",
|
||||
@ -252,6 +252,59 @@
|
||||
"description": "Alibaba Cloud Gateway SPI Client",
|
||||
"time": "2022-07-14T05:31:35+00:00"
|
||||
},
|
||||
{
|
||||
"name": "alibabacloud/ocr-20191230",
|
||||
"version": "3.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/alibabacloud-sdk-php/Ocr-20191230.git",
|
||||
"reference": "8d7ad521074b2fd6c392cf0f2b114ce43f0612b8"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/alibabacloud-sdk-php/Ocr-20191230/zipball/8d7ad521074b2fd6c392cf0f2b114ce43f0612b8",
|
||||
"reference": "8d7ad521074b2fd6c392cf0f2b114ce43f0612b8",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"alibabacloud/darabonba-openapi": "^0.2.8",
|
||||
"alibabacloud/endpoint-util": "^0.1.0",
|
||||
"alibabacloud/openapi-util": "^0.1.10|^0.2.1",
|
||||
"alibabacloud/openplatform-20191219": "^2.0.1",
|
||||
"alibabacloud/tea-fileform": "^0.3.0",
|
||||
"alibabacloud/tea-oss-sdk": "^0.3.0",
|
||||
"alibabacloud/tea-oss-utils": "^0.3.1",
|
||||
"alibabacloud/tea-utils": "^0.2.19",
|
||||
"php": ">5.5"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"AlibabaCloud\\SDK\\Ocr\\V20191230\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"Apache-2.0"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Alibaba Cloud SDK",
|
||||
"email": "sdk-team@alibabacloud.com"
|
||||
}
|
||||
],
|
||||
"description": "Alibaba Cloud OCR (20191230) SDK Library for PHP",
|
||||
"support": {
|
||||
"source": "https://github.com/alibabacloud-sdk-php/Ocr-20191230/tree/3.0.0"
|
||||
},
|
||||
"time": "2023-07-04T02:18:29+00:00"
|
||||
},
|
||||
{
|
||||
"name": "alibabacloud/openapi-util",
|
||||
"version": "0.1.13",
|
||||
@ -288,6 +341,55 @@
|
||||
"description": "Alibaba Cloud OpenApi Util",
|
||||
"time": "2022-11-06T05:49:55+00:00"
|
||||
},
|
||||
{
|
||||
"name": "alibabacloud/openplatform-20191219",
|
||||
"version": "2.0.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/alibabacloud-sdk-php/OpenPlatform-20191219.git",
|
||||
"reference": "02ffa72369f8649214f1cfa336b52a544735f517"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/alibabacloud-sdk-php/OpenPlatform-20191219/zipball/02ffa72369f8649214f1cfa336b52a544735f517",
|
||||
"reference": "02ffa72369f8649214f1cfa336b52a544735f517",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"alibabacloud/darabonba-openapi": "^0.2.8",
|
||||
"alibabacloud/endpoint-util": "^0.1.0",
|
||||
"alibabacloud/openapi-util": "^0.1.10|^0.2.1",
|
||||
"alibabacloud/tea-utils": "^0.2.17",
|
||||
"php": ">5.5"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"AlibabaCloud\\SDK\\OpenPlatform\\V20191219\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"Apache-2.0"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Alibaba Cloud SDK",
|
||||
"email": "sdk-team@alibabacloud.com"
|
||||
}
|
||||
],
|
||||
"description": "Alibaba Cloud OpenPlatform (20191219) SDK Library for PHP",
|
||||
"support": {
|
||||
"source": "https://github.com/alibabacloud-sdk-php/OpenPlatform-20191219/tree/2.0.1"
|
||||
},
|
||||
"time": "2023-02-07T06:39:39+00:00"
|
||||
},
|
||||
{
|
||||
"name": "alibabacloud/tea",
|
||||
"version": "3.2.1",
|
||||
@ -343,6 +445,156 @@
|
||||
],
|
||||
"time": "2023-05-16T06:43:41+00:00"
|
||||
},
|
||||
{
|
||||
"name": "alibabacloud/tea-fileform",
|
||||
"version": "0.3.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
|
||||
"reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
|
||||
"reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"alibabacloud/tea": "^3.0",
|
||||
"php": ">5.5"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^4.8.35|^5.4.3"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"AlibabaCloud\\Tea\\FileForm\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"Apache-2.0"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Alibaba Cloud SDK",
|
||||
"email": "sdk-team@alibabacloud.com"
|
||||
}
|
||||
],
|
||||
"description": "Alibaba Cloud Tea File Library for PHP",
|
||||
"support": {
|
||||
"issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
|
||||
"source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
|
||||
},
|
||||
"time": "2020-12-01T07:24:35+00:00"
|
||||
},
|
||||
{
|
||||
"name": "alibabacloud/tea-oss-sdk",
|
||||
"version": "0.3.6",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/alibabacloud-sdk-php/tea-oss-sdk.git",
|
||||
"reference": "e28e70e2842b2e4da031a774209231bf08d7965c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-oss-sdk/zipball/e28e70e2842b2e4da031a774209231bf08d7965c",
|
||||
"reference": "e28e70e2842b2e4da031a774209231bf08d7965c",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"alibabacloud/credentials": "^1.1",
|
||||
"alibabacloud/tea-fileform": "^0.3.0",
|
||||
"alibabacloud/tea-oss-utils": "^0.3.0",
|
||||
"alibabacloud/tea-utils": "^0.2.0",
|
||||
"alibabacloud/tea-xml": "^0.2",
|
||||
"php": ">5.5"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"AlibabaCloud\\SDK\\OSS\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"Apache-2.0"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Alibaba Cloud SDK",
|
||||
"email": "sdk-team@alibabacloud.com"
|
||||
}
|
||||
],
|
||||
"description": "Aliyun Tea OSS SDK Library for PHP",
|
||||
"support": {
|
||||
"source": "https://github.com/alibabacloud-sdk-php/tea-oss-sdk/tree/0.3.6"
|
||||
},
|
||||
"time": "2022-10-13T07:23:51+00:00"
|
||||
},
|
||||
{
|
||||
"name": "alibabacloud/tea-oss-utils",
|
||||
"version": "0.3.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/alibabacloud-sdk-php/tea-oss-utils.git",
|
||||
"reference": "19f58fc509347f075664e377742d4f9e18465372"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-oss-utils/zipball/19f58fc509347f075664e377742d4f9e18465372",
|
||||
"reference": "19f58fc509347f075664e377742d4f9e18465372",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"alibabacloud/tea": "^3.0",
|
||||
"guzzlehttp/psr7": "^1.0",
|
||||
"php": ">5.5"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^4.8.35|^5.4.3|^9.4"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"AlibabaCloud\\Tea\\OSSUtils\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"Apache-2.0"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Alibaba Cloud SDK",
|
||||
"email": "sdk-team@alibabacloud.com"
|
||||
}
|
||||
],
|
||||
"description": "Alibaba Cloud Tea OSS Utils Library for PHP",
|
||||
"support": {
|
||||
"source": "https://github.com/alibabacloud-sdk-php/tea-oss-utils/tree/0.3.1"
|
||||
},
|
||||
"time": "2023-01-08T13:26:58+00:00"
|
||||
},
|
||||
{
|
||||
"name": "alibabacloud/tea-utils",
|
||||
"version": "0.2.19",
|
||||
@ -5053,5 +5305,5 @@
|
||||
"ext-swoole": "^4.4.0"
|
||||
},
|
||||
"platform-dev": [],
|
||||
"plugin-api-version": "2.3.0"
|
||||
"plugin-api-version": "2.1.0"
|
||||
}
|
||||
|
@ -44,6 +44,8 @@ Route::group('api/', function () {
|
||||
//强制登录
|
||||
Route::group(function () {
|
||||
|
||||
Route::post('merchant_license_identify', 'api.Common/merchant_license_identify');//营业执照识别
|
||||
|
||||
Route::post('user_free_trial/:id', 'api.store.product.StoreProduct/UserFreeTrial')->option([
|
||||
'_alias' => '免审编辑',
|
||||
]);
|
||||
@ -302,7 +304,8 @@ Route::group('api/', function () {
|
||||
Route::post('product/good/:id', 'StoreProduct/updateGood');
|
||||
Route::get('product/config', 'StoreProduct/config');
|
||||
Route::post('product/stockIn', 'StoreProduct/stockIn');
|
||||
|
||||
Route::post('product/add_cloud_product', 'StoreProduct/add_cloud_product');
|
||||
Route::get('product/cloud_product_list', 'StoreProduct/cloud_product_list');
|
||||
//商品分类
|
||||
Route::get('category/lst', 'StoreCategory/lst');
|
||||
Route::post('category/create', 'StoreCategory/create');
|
||||
|
@ -204,6 +204,12 @@ Route::group(function () {
|
||||
Route::post('labels/:id', '/setLabels')->name('merchantStoreProductLabels')->option([
|
||||
'_alias' => '标签',
|
||||
]);
|
||||
Route::post('add_cloud_product', '/add_cloud_product')->option([
|
||||
'_alias' => '商户设置云商品',
|
||||
]);
|
||||
Route::get('cloud_product_list', '/cloud_product_list')->option([
|
||||
'_alias' => '云商品列表',
|
||||
]);
|
||||
Route::get('attr_value/:id', '/getAttrValue')->name('merchantStoreProductAttrValue')->option([
|
||||
'_alias' => '获取规格',
|
||||
]);
|
||||
|
15
vendor/alibabacloud/ocr-20191230/.gitignore
vendored
Normal file
15
vendor/alibabacloud/ocr-20191230/.gitignore
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
composer.phar
|
||||
/vendor/
|
||||
|
||||
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
|
||||
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
|
||||
composer.lock
|
||||
|
||||
.vscode/
|
||||
.idea
|
||||
.DS_Store
|
||||
|
||||
cache/
|
||||
*.cache
|
||||
runtime/
|
||||
.php_cs.cache
|
65
vendor/alibabacloud/ocr-20191230/.php_cs.dist
vendored
Normal file
65
vendor/alibabacloud/ocr-20191230/.php_cs.dist
vendored
Normal file
@ -0,0 +1,65 @@
|
||||
<?php
|
||||
/*
|
||||
* This document has been generated with
|
||||
* https://mlocati.github.io/php-cs-fixer-configurator/#version:2.15|configurator
|
||||
* you can change this configuration by importing this file.
|
||||
*/
|
||||
|
||||
return PhpCsFixer\Config::create()
|
||||
->setRiskyAllowed(true)
|
||||
->setIndent(' ')
|
||||
->setRules([
|
||||
'@PSR2' => true,
|
||||
'@PhpCsFixer' => true,
|
||||
'@Symfony:risky' => true,
|
||||
'concat_space' => ['spacing' => 'one'],
|
||||
'array_syntax' => ['syntax' => 'short'],
|
||||
'array_indentation' => true,
|
||||
'combine_consecutive_unsets' => true,
|
||||
'method_separation' => true,
|
||||
'single_quote' => true,
|
||||
'declare_equal_normalize' => true,
|
||||
'function_typehint_space' => true,
|
||||
'hash_to_slash_comment' => true,
|
||||
'include' => true,
|
||||
'lowercase_cast' => true,
|
||||
'no_multiline_whitespace_before_semicolons' => true,
|
||||
'no_leading_import_slash' => true,
|
||||
'no_multiline_whitespace_around_double_arrow' => true,
|
||||
'no_spaces_around_offset' => true,
|
||||
'no_unneeded_control_parentheses' => true,
|
||||
'no_unused_imports' => true,
|
||||
'no_whitespace_before_comma_in_array' => true,
|
||||
'no_whitespace_in_blank_line' => true,
|
||||
'object_operator_without_whitespace' => true,
|
||||
'single_blank_line_before_namespace' => true,
|
||||
'single_class_element_per_statement' => true,
|
||||
'space_after_semicolon' => true,
|
||||
'standardize_not_equals' => true,
|
||||
'ternary_operator_spaces' => true,
|
||||
'trailing_comma_in_multiline_array' => true,
|
||||
'trim_array_spaces' => true,
|
||||
'unary_operator_spaces' => true,
|
||||
'whitespace_after_comma_in_array' => true,
|
||||
'no_extra_consecutive_blank_lines' => [
|
||||
'curly_brace_block',
|
||||
'extra',
|
||||
'parenthesis_brace_block',
|
||||
'square_brace_block',
|
||||
'throw',
|
||||
'use',
|
||||
],
|
||||
'binary_operator_spaces' => [
|
||||
'align_double_arrow' => true,
|
||||
'align_equals' => true,
|
||||
],
|
||||
'braces' => [
|
||||
'allow_single_line_closure' => true,
|
||||
],
|
||||
])
|
||||
->setFinder(
|
||||
PhpCsFixer\Finder::create()
|
||||
->exclude('vendor')
|
||||
->exclude('tests')
|
||||
->in(__DIR__)
|
||||
);
|
70
vendor/alibabacloud/ocr-20191230/ChangeLog.md
vendored
Normal file
70
vendor/alibabacloud/ocr-20191230/ChangeLog.md
vendored
Normal file
@ -0,0 +1,70 @@
|
||||
2023-07-04 Version: 3.0.0
|
||||
- Update TrimDocument.
|
||||
- Update RecognizeTakeoutOrder.
|
||||
- Update RecognizePassportMRZ.
|
||||
- Update RecognizeChinapassport.
|
||||
- Update DetectCardScreenshot.
|
||||
- Update RecognizeVerificationcode.
|
||||
- Update RecognizePoiName.
|
||||
- Update RecognizeAccountPage.
|
||||
|
||||
2023-02-16 Version: 2.0.17
|
||||
- Update RecognizeVideoCharacter.
|
||||
|
||||
2023-01-13 Version: 2.0.16
|
||||
- Update sdk.
|
||||
|
||||
2023-01-11 Version: 2.0.15
|
||||
- Update sdk.
|
||||
|
||||
2023-01-05 Version: 2.0.14
|
||||
- Release RecognizeVATInvoice.
|
||||
|
||||
2022-11-10 Version: 2.0.13
|
||||
- Release RecognizeVATInvoice.
|
||||
|
||||
2022-10-17 Version: 2.0.12
|
||||
- Release RecognizeVATInvoice.
|
||||
|
||||
2022-10-14 Version: 2.0.11
|
||||
- Release RecognizeVATInvoice.
|
||||
|
||||
2022-06-21 Version: 2.0.10
|
||||
- Release RecognizeTurkeyIdentityCard RecognizeMalaysiaIdentityCard RecognizeRussiaIdentityCard RecognizeIndonesiaIdentityCard RecognizeUkraineIdentityCard RecognizeVietnamIdentityCard.
|
||||
|
||||
2022-05-25 Version: 2.0.9
|
||||
- Release RecognizeTurkeyIdentityCard RecognizeMalaysiaIdentityCard RecognizeRussiaIdentityCard RecognizeIndonesiaIdentityCard RecognizeIndonesiaIdentityCard.
|
||||
|
||||
2022-05-05 Version: 2.0.8
|
||||
- Release RecognizeUkraineIdentityCard.
|
||||
|
||||
2022-03-09 Version: 2.0.7
|
||||
- Release RecognizeVideoCastCrewList.
|
||||
|
||||
2022-03-03 Version: 2.0.6
|
||||
- RecognizeVideoCharacter add output field inputFile.
|
||||
|
||||
2021-12-15 Version: 2.0.5
|
||||
- RecognizeVideoCharacter add output field inputFile.
|
||||
|
||||
2021-11-23 Version: 1.0.5
|
||||
- Update RecognizeCharacter.
|
||||
|
||||
2021-07-02 Version: 1.0.4
|
||||
- Release RecognizeQuotaInvoice RecognizeTicketInvoice RecognizePdf.
|
||||
|
||||
2021-05-10 Version: 1.0.3
|
||||
- Update RecognizeDriverLicense RecognizeLicensePlate.
|
||||
|
||||
2021-03-25 Version: 1.0.2
|
||||
- Generated php 2019-12-30 for ocr.
|
||||
|
||||
2021-03-04 Version: 1.0.1
|
||||
- Update Ocr.
|
||||
|
||||
2021-01-29 Version: 1.0.0
|
||||
- Generated php 2019-12-30 for ocr.
|
||||
|
||||
2020-11-13 Version: 0.1.16
|
||||
- Release DetectCardScreenshot RecognizePoiName.
|
||||
|
201
vendor/alibabacloud/ocr-20191230/LICENSE
vendored
Normal file
201
vendor/alibabacloud/ocr-20191230/LICENSE
vendored
Normal file
@ -0,0 +1,201 @@
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
35
vendor/alibabacloud/ocr-20191230/README-CN.md
vendored
Normal file
35
vendor/alibabacloud/ocr-20191230/README-CN.md
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
[English](README.md) | 简体中文
|
||||
|
||||

|
||||
|
||||
# Alibaba Cloud ocr SDK for PHP
|
||||
|
||||
## 安装
|
||||
|
||||
### Composer
|
||||
|
||||
```bash
|
||||
composer require alibabacloud/ocr-20191230
|
||||
```
|
||||
|
||||
## 问题
|
||||
|
||||
[提交 Issue](https://github.com/aliyun/alibabacloud-php-sdk/issues/new),不符合指南的问题可能会立即关闭。
|
||||
|
||||
## 使用说明
|
||||
|
||||
[快速使用](https://github.com/aliyun/alibabacloud-php-sdk/blob/master/docs/0-Examples-CN.md#%E5%BF%AB%E9%80%9F%E4%BD%BF%E7%94%A8)
|
||||
|
||||
## 发行说明
|
||||
|
||||
每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。
|
||||
|
||||
## 相关
|
||||
|
||||
* [最新源码](https://github.com/aliyun/alibabacloud-php-sdk/)
|
||||
|
||||
## 许可证
|
||||
|
||||
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
||||
|
||||
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
35
vendor/alibabacloud/ocr-20191230/README.md
vendored
Normal file
35
vendor/alibabacloud/ocr-20191230/README.md
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
English | [简体中文](README-CN.md)
|
||||
|
||||

|
||||
|
||||
# Alibaba Cloud ocr SDK for PHP
|
||||
|
||||
## Installation
|
||||
|
||||
### Composer
|
||||
|
||||
```bash
|
||||
composer require alibabacloud/ocr-20191230
|
||||
```
|
||||
|
||||
## Issues
|
||||
|
||||
[Opening an Issue](https://github.com/aliyun/alibabacloud-php-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
|
||||
|
||||
## Usage
|
||||
|
||||
[Quick Examples](https://github.com/aliyun/alibabacloud-php-sdk/blob/master/docs/0-Examples-EN.md#quick-examples)
|
||||
|
||||
## Changelog
|
||||
|
||||
Detailed changes for each release are documented in the [release notes](./ChangeLog.txt).
|
||||
|
||||
## References
|
||||
|
||||
* [Latest Release](https://github.com/aliyun/alibabacloud-php-sdk/)
|
||||
|
||||
## License
|
||||
|
||||
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
||||
|
||||
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
17
vendor/alibabacloud/ocr-20191230/autoload.php
vendored
Normal file
17
vendor/alibabacloud/ocr-20191230/autoload.php
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
if (file_exists(__DIR__ . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php')) {
|
||||
require_once __DIR__ . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php';
|
||||
}
|
||||
|
||||
spl_autoload_register(function ($class) {
|
||||
$name = str_replace('AlibabaCloud\\SDK\\Ocr\\V20191230\\', '', $class);
|
||||
$file = __DIR__ . \DIRECTORY_SEPARATOR . 'src' . \DIRECTORY_SEPARATOR . str_replace('\\', \DIRECTORY_SEPARATOR, $name) . '.php';
|
||||
if (file_exists($file)) {
|
||||
require_once $file;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
});
|
37
vendor/alibabacloud/ocr-20191230/composer.json
vendored
Normal file
37
vendor/alibabacloud/ocr-20191230/composer.json
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "alibabacloud/ocr-20191230",
|
||||
"description": "Alibaba Cloud OCR (20191230) SDK Library for PHP",
|
||||
"type": "library",
|
||||
"license": "Apache-2.0",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Alibaba Cloud SDK",
|
||||
"email": "sdk-team@alibabacloud.com"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php": ">5.5",
|
||||
"alibabacloud/tea-utils": "^0.2.19",
|
||||
"alibabacloud/tea-oss-sdk": "^0.3.0",
|
||||
"alibabacloud/openplatform-20191219": "^2.0.1",
|
||||
"alibabacloud/tea-oss-utils": "^0.3.1",
|
||||
"alibabacloud/tea-fileform": "^0.3.0",
|
||||
"alibabacloud/darabonba-openapi": "^0.2.8",
|
||||
"alibabacloud/openapi-util": "^0.1.10|^0.2.1",
|
||||
"alibabacloud/endpoint-util": "^0.1.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"AlibabaCloud\\SDK\\Ocr\\V20191230\\": "src"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"fixer": "php-cs-fixer fix ./"
|
||||
},
|
||||
"config": {
|
||||
"sort-packages": true,
|
||||
"preferred-install": "dist",
|
||||
"optimize-autoloader": true
|
||||
},
|
||||
"prefer-stable": true
|
||||
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class GetAsyncJobResultRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example E75FE679-0303-4DD1-8252-1143B4FA8A27
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $jobId;
|
||||
protected $_name = [
|
||||
'jobId' => 'JobId',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->jobId) {
|
||||
$res['JobId'] = $this->jobId;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return GetAsyncJobResultRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['JobId'])) {
|
||||
$model->jobId = $map['JobId'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class GetAsyncJobResultResponse extends Model
|
||||
{
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $headers;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $statusCode;
|
||||
|
||||
/**
|
||||
* @var GetAsyncJobResultResponseBody
|
||||
*/
|
||||
public $body;
|
||||
protected $_name = [
|
||||
'headers' => 'headers',
|
||||
'statusCode' => 'statusCode',
|
||||
'body' => 'body',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
Model::validateRequired('headers', $this->headers, true);
|
||||
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||
Model::validateRequired('body', $this->body, true);
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->headers) {
|
||||
$res['headers'] = $this->headers;
|
||||
}
|
||||
if (null !== $this->statusCode) {
|
||||
$res['statusCode'] = $this->statusCode;
|
||||
}
|
||||
if (null !== $this->body) {
|
||||
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return GetAsyncJobResultResponse
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['headers'])) {
|
||||
$model->headers = $map['headers'];
|
||||
}
|
||||
if (isset($map['statusCode'])) {
|
||||
$model->statusCode = $map['statusCode'];
|
||||
}
|
||||
if (isset($map['body'])) {
|
||||
$model->body = GetAsyncJobResultResponseBody::fromMap($map['body']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\GetAsyncJobResultResponseBody\data;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class GetAsyncJobResultResponseBody extends Model
|
||||
{
|
||||
/**
|
||||
* @var data
|
||||
*/
|
||||
public $data;
|
||||
|
||||
/**
|
||||
* @example A1F44EC4-118D-4A03-B213-F908F36F7DAA
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $requestId;
|
||||
protected $_name = [
|
||||
'data' => 'Data',
|
||||
'requestId' => 'RequestId',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->data) {
|
||||
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||
}
|
||||
if (null !== $this->requestId) {
|
||||
$res['RequestId'] = $this->requestId;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return GetAsyncJobResultResponseBody
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Data'])) {
|
||||
$model->data = data::fromMap($map['Data']);
|
||||
}
|
||||
if (isset($map['RequestId'])) {
|
||||
$model->requestId = $map['RequestId'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
103
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody/data.php
vendored
Normal file
103
vendor/alibabacloud/ocr-20191230/src/Models/GetAsyncJobResultResponseBody/data.php
vendored
Normal file
@ -0,0 +1,103 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\GetAsyncJobResultResponseBody;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class data extends Model
|
||||
{
|
||||
/**
|
||||
* @example InvalidParameter
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $errorCode;
|
||||
|
||||
/**
|
||||
* @example paramsIllegal
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $errorMessage;
|
||||
|
||||
/**
|
||||
* @example 49E2CC28-ED1D-4CC5-854D-7D0AE2B20976
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $jobId;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $result;
|
||||
|
||||
/**
|
||||
* @example PROCESS_SUCCESS
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $status;
|
||||
protected $_name = [
|
||||
'errorCode' => 'ErrorCode',
|
||||
'errorMessage' => 'ErrorMessage',
|
||||
'jobId' => 'JobId',
|
||||
'result' => 'Result',
|
||||
'status' => 'Status',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->errorCode) {
|
||||
$res['ErrorCode'] = $this->errorCode;
|
||||
}
|
||||
if (null !== $this->errorMessage) {
|
||||
$res['ErrorMessage'] = $this->errorMessage;
|
||||
}
|
||||
if (null !== $this->jobId) {
|
||||
$res['JobId'] = $this->jobId;
|
||||
}
|
||||
if (null !== $this->result) {
|
||||
$res['Result'] = $this->result;
|
||||
}
|
||||
if (null !== $this->status) {
|
||||
$res['Status'] = $this->status;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return data
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ErrorCode'])) {
|
||||
$model->errorCode = $map['ErrorCode'];
|
||||
}
|
||||
if (isset($map['ErrorMessage'])) {
|
||||
$model->errorMessage = $map['ErrorMessage'];
|
||||
}
|
||||
if (isset($map['JobId'])) {
|
||||
$model->jobId = $map['JobId'];
|
||||
}
|
||||
if (isset($map['Result'])) {
|
||||
$model->result = $map['Result'];
|
||||
}
|
||||
if (isset($map['Status'])) {
|
||||
$model->status = $map['Status'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardAdvanceRequest.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
use GuzzleHttp\Psr7\Stream;
|
||||
|
||||
class RecognizeBankCardAdvanceRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBankCard/yhk3.jpg
|
||||
*
|
||||
* @var Stream
|
||||
*/
|
||||
public $imageURLObject;
|
||||
protected $_name = [
|
||||
'imageURLObject' => 'ImageURL',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURLObject) {
|
||||
$res['ImageURL'] = $this->imageURLObject;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeBankCardAdvanceRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURLObject = $map['ImageURL'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeBankCardRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBankCard/yhk3.jpg
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $imageURL;
|
||||
protected $_name = [
|
||||
'imageURL' => 'ImageURL',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURL) {
|
||||
$res['ImageURL'] = $this->imageURL;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeBankCardRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURL = $map['ImageURL'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeBankCardResponse extends Model
|
||||
{
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $headers;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $statusCode;
|
||||
|
||||
/**
|
||||
* @var RecognizeBankCardResponseBody
|
||||
*/
|
||||
public $body;
|
||||
protected $_name = [
|
||||
'headers' => 'headers',
|
||||
'statusCode' => 'statusCode',
|
||||
'body' => 'body',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
Model::validateRequired('headers', $this->headers, true);
|
||||
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||
Model::validateRequired('body', $this->body, true);
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->headers) {
|
||||
$res['headers'] = $this->headers;
|
||||
}
|
||||
if (null !== $this->statusCode) {
|
||||
$res['statusCode'] = $this->statusCode;
|
||||
}
|
||||
if (null !== $this->body) {
|
||||
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeBankCardResponse
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['headers'])) {
|
||||
$model->headers = $map['headers'];
|
||||
}
|
||||
if (isset($map['statusCode'])) {
|
||||
$model->statusCode = $map['statusCode'];
|
||||
}
|
||||
if (isset($map['body'])) {
|
||||
$model->body = RecognizeBankCardResponseBody::fromMap($map['body']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBankCardResponseBody\data;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeBankCardResponseBody extends Model
|
||||
{
|
||||
/**
|
||||
* @var data
|
||||
*/
|
||||
public $data;
|
||||
|
||||
/**
|
||||
* @example D9C7521-0367-42EE-9646-FD066CCADB26
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $requestId;
|
||||
protected $_name = [
|
||||
'data' => 'Data',
|
||||
'requestId' => 'RequestId',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->data) {
|
||||
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||
}
|
||||
if (null !== $this->requestId) {
|
||||
$res['RequestId'] = $this->requestId;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeBankCardResponseBody
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Data'])) {
|
||||
$model->data = data::fromMap($map['Data']);
|
||||
}
|
||||
if (isset($map['RequestId'])) {
|
||||
$model->requestId = $map['RequestId'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
75
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody/data.php
vendored
Normal file
75
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBankCardResponseBody/data.php
vendored
Normal file
@ -0,0 +1,75 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBankCardResponseBody;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class data extends Model
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $bankName;
|
||||
|
||||
/**
|
||||
* @example 6212262315007683105
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $cardNumber;
|
||||
|
||||
/**
|
||||
* @example 07/26
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $validDate;
|
||||
protected $_name = [
|
||||
'bankName' => 'BankName',
|
||||
'cardNumber' => 'CardNumber',
|
||||
'validDate' => 'ValidDate',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->bankName) {
|
||||
$res['BankName'] = $this->bankName;
|
||||
}
|
||||
if (null !== $this->cardNumber) {
|
||||
$res['CardNumber'] = $this->cardNumber;
|
||||
}
|
||||
if (null !== $this->validDate) {
|
||||
$res['ValidDate'] = $this->validDate;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return data
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['BankName'])) {
|
||||
$model->bankName = $map['BankName'];
|
||||
}
|
||||
if (isset($map['CardNumber'])) {
|
||||
$model->cardNumber = $map['CardNumber'];
|
||||
}
|
||||
if (isset($map['ValidDate'])) {
|
||||
$model->validDate = $map['ValidDate'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardAdvanceRequest.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
use GuzzleHttp\Psr7\Stream;
|
||||
|
||||
class RecognizeBusinessCardAdvanceRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBusinessCard/RecognizeBusinessCard1.jpg
|
||||
*
|
||||
* @var Stream
|
||||
*/
|
||||
public $imageURLObject;
|
||||
protected $_name = [
|
||||
'imageURLObject' => 'ImageURL',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURLObject) {
|
||||
$res['ImageURL'] = $this->imageURLObject;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeBusinessCardAdvanceRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURLObject = $map['ImageURL'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeBusinessCardRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBusinessCard/RecognizeBusinessCard1.jpg
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $imageURL;
|
||||
protected $_name = [
|
||||
'imageURL' => 'ImageURL',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURL) {
|
||||
$res['ImageURL'] = $this->imageURL;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeBusinessCardRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURL = $map['ImageURL'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeBusinessCardResponse extends Model
|
||||
{
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $headers;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $statusCode;
|
||||
|
||||
/**
|
||||
* @var RecognizeBusinessCardResponseBody
|
||||
*/
|
||||
public $body;
|
||||
protected $_name = [
|
||||
'headers' => 'headers',
|
||||
'statusCode' => 'statusCode',
|
||||
'body' => 'body',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
Model::validateRequired('headers', $this->headers, true);
|
||||
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||
Model::validateRequired('body', $this->body, true);
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->headers) {
|
||||
$res['headers'] = $this->headers;
|
||||
}
|
||||
if (null !== $this->statusCode) {
|
||||
$res['statusCode'] = $this->statusCode;
|
||||
}
|
||||
if (null !== $this->body) {
|
||||
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeBusinessCardResponse
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['headers'])) {
|
||||
$model->headers = $map['headers'];
|
||||
}
|
||||
if (isset($map['statusCode'])) {
|
||||
$model->statusCode = $map['statusCode'];
|
||||
}
|
||||
if (isset($map['body'])) {
|
||||
$model->body = RecognizeBusinessCardResponseBody::fromMap($map['body']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessCardResponseBody\data;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeBusinessCardResponseBody extends Model
|
||||
{
|
||||
/**
|
||||
* @var data
|
||||
*/
|
||||
public $data;
|
||||
|
||||
/**
|
||||
* @example 0068957A-C493-481F-BA14-C3F89BF75BD4
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $requestId;
|
||||
protected $_name = [
|
||||
'data' => 'Data',
|
||||
'requestId' => 'RequestId',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->data) {
|
||||
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||
}
|
||||
if (null !== $this->requestId) {
|
||||
$res['RequestId'] = $this->requestId;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeBusinessCardResponseBody
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Data'])) {
|
||||
$model->data = data::fromMap($map['Data']);
|
||||
}
|
||||
if (isset($map['RequestId'])) {
|
||||
$model->requestId = $map['RequestId'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
145
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody/data.php
vendored
Normal file
145
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessCardResponseBody/data.php
vendored
Normal file
@ -0,0 +1,145 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessCardResponseBody;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class data extends Model
|
||||
{
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $addresses;
|
||||
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $cellPhoneNumbers;
|
||||
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $companies;
|
||||
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $departments;
|
||||
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $emails;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $name;
|
||||
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $officePhoneNumbers;
|
||||
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $titles;
|
||||
protected $_name = [
|
||||
'addresses' => 'Addresses',
|
||||
'cellPhoneNumbers' => 'CellPhoneNumbers',
|
||||
'companies' => 'Companies',
|
||||
'departments' => 'Departments',
|
||||
'emails' => 'Emails',
|
||||
'name' => 'Name',
|
||||
'officePhoneNumbers' => 'OfficePhoneNumbers',
|
||||
'titles' => 'Titles',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->addresses) {
|
||||
$res['Addresses'] = $this->addresses;
|
||||
}
|
||||
if (null !== $this->cellPhoneNumbers) {
|
||||
$res['CellPhoneNumbers'] = $this->cellPhoneNumbers;
|
||||
}
|
||||
if (null !== $this->companies) {
|
||||
$res['Companies'] = $this->companies;
|
||||
}
|
||||
if (null !== $this->departments) {
|
||||
$res['Departments'] = $this->departments;
|
||||
}
|
||||
if (null !== $this->emails) {
|
||||
$res['Emails'] = $this->emails;
|
||||
}
|
||||
if (null !== $this->name) {
|
||||
$res['Name'] = $this->name;
|
||||
}
|
||||
if (null !== $this->officePhoneNumbers) {
|
||||
$res['OfficePhoneNumbers'] = $this->officePhoneNumbers;
|
||||
}
|
||||
if (null !== $this->titles) {
|
||||
$res['Titles'] = $this->titles;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return data
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Addresses'])) {
|
||||
if (!empty($map['Addresses'])) {
|
||||
$model->addresses = $map['Addresses'];
|
||||
}
|
||||
}
|
||||
if (isset($map['CellPhoneNumbers'])) {
|
||||
if (!empty($map['CellPhoneNumbers'])) {
|
||||
$model->cellPhoneNumbers = $map['CellPhoneNumbers'];
|
||||
}
|
||||
}
|
||||
if (isset($map['Companies'])) {
|
||||
if (!empty($map['Companies'])) {
|
||||
$model->companies = $map['Companies'];
|
||||
}
|
||||
}
|
||||
if (isset($map['Departments'])) {
|
||||
if (!empty($map['Departments'])) {
|
||||
$model->departments = $map['Departments'];
|
||||
}
|
||||
}
|
||||
if (isset($map['Emails'])) {
|
||||
if (!empty($map['Emails'])) {
|
||||
$model->emails = $map['Emails'];
|
||||
}
|
||||
}
|
||||
if (isset($map['Name'])) {
|
||||
$model->name = $map['Name'];
|
||||
}
|
||||
if (isset($map['OfficePhoneNumbers'])) {
|
||||
if (!empty($map['OfficePhoneNumbers'])) {
|
||||
$model->officePhoneNumbers = $map['OfficePhoneNumbers'];
|
||||
}
|
||||
}
|
||||
if (isset($map['Titles'])) {
|
||||
if (!empty($map['Titles'])) {
|
||||
$model->titles = $map['Titles'];
|
||||
}
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseAdvanceRequest.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
use GuzzleHttp\Psr7\Stream;
|
||||
|
||||
class RecognizeBusinessLicenseAdvanceRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBusinessLicense/RecognizeBusinessLicense1.jpg
|
||||
*
|
||||
* @var Stream
|
||||
*/
|
||||
public $imageURLObject;
|
||||
protected $_name = [
|
||||
'imageURLObject' => 'ImageURL',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURLObject) {
|
||||
$res['ImageURL'] = $this->imageURLObject;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeBusinessLicenseAdvanceRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURLObject = $map['ImageURL'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeBusinessLicenseRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBusinessLicense/RecognizeBusinessLicense1.jpg
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $imageURL;
|
||||
protected $_name = [
|
||||
'imageURL' => 'ImageURL',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURL) {
|
||||
$res['ImageURL'] = $this->imageURL;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeBusinessLicenseRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURL = $map['ImageURL'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeBusinessLicenseResponse extends Model
|
||||
{
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $headers;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $statusCode;
|
||||
|
||||
/**
|
||||
* @var RecognizeBusinessLicenseResponseBody
|
||||
*/
|
||||
public $body;
|
||||
protected $_name = [
|
||||
'headers' => 'headers',
|
||||
'statusCode' => 'statusCode',
|
||||
'body' => 'body',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
Model::validateRequired('headers', $this->headers, true);
|
||||
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||
Model::validateRequired('body', $this->body, true);
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->headers) {
|
||||
$res['headers'] = $this->headers;
|
||||
}
|
||||
if (null !== $this->statusCode) {
|
||||
$res['statusCode'] = $this->statusCode;
|
||||
}
|
||||
if (null !== $this->body) {
|
||||
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeBusinessLicenseResponse
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['headers'])) {
|
||||
$model->headers = $map['headers'];
|
||||
}
|
||||
if (isset($map['statusCode'])) {
|
||||
$model->statusCode = $map['statusCode'];
|
||||
}
|
||||
if (isset($map['body'])) {
|
||||
$model->body = RecognizeBusinessLicenseResponseBody::fromMap($map['body']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeBusinessLicenseResponseBody extends Model
|
||||
{
|
||||
/**
|
||||
* @var data
|
||||
*/
|
||||
public $data;
|
||||
|
||||
/**
|
||||
* @example F34D031B-02BD-4A59-BA35-EE068DD6F6E6
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $requestId;
|
||||
protected $_name = [
|
||||
'data' => 'Data',
|
||||
'requestId' => 'RequestId',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->data) {
|
||||
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||
}
|
||||
if (null !== $this->requestId) {
|
||||
$res['RequestId'] = $this->requestId;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeBusinessLicenseResponseBody
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Data'])) {
|
||||
$model->data = data::fromMap($map['Data']);
|
||||
}
|
||||
if (isset($map['RequestId'])) {
|
||||
$model->requestId = $map['RequestId'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
215
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data.php
vendored
Normal file
215
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data.php
vendored
Normal file
@ -0,0 +1,215 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data\emblem;
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data\QRCode;
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data\stamp;
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data\title;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class data extends Model
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $address;
|
||||
|
||||
/**
|
||||
* @example 0
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $angle;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $business;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $capital;
|
||||
|
||||
/**
|
||||
* @var emblem
|
||||
*/
|
||||
public $emblem;
|
||||
|
||||
/**
|
||||
* @example 20150504
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $establishDate;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $legalPerson;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $name;
|
||||
|
||||
/**
|
||||
* @var QRCode
|
||||
*/
|
||||
public $QRCode;
|
||||
|
||||
/**
|
||||
* @example 91500108320423****
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $registerNumber;
|
||||
|
||||
/**
|
||||
* @var stamp
|
||||
*/
|
||||
public $stamp;
|
||||
|
||||
/**
|
||||
* @var title
|
||||
*/
|
||||
public $title;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $type;
|
||||
|
||||
/**
|
||||
* @example 29991231
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $validPeriod;
|
||||
protected $_name = [
|
||||
'address' => 'Address',
|
||||
'angle' => 'Angle',
|
||||
'business' => 'Business',
|
||||
'capital' => 'Capital',
|
||||
'emblem' => 'Emblem',
|
||||
'establishDate' => 'EstablishDate',
|
||||
'legalPerson' => 'LegalPerson',
|
||||
'name' => 'Name',
|
||||
'QRCode' => 'QRCode',
|
||||
'registerNumber' => 'RegisterNumber',
|
||||
'stamp' => 'Stamp',
|
||||
'title' => 'Title',
|
||||
'type' => 'Type',
|
||||
'validPeriod' => 'ValidPeriod',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->address) {
|
||||
$res['Address'] = $this->address;
|
||||
}
|
||||
if (null !== $this->angle) {
|
||||
$res['Angle'] = $this->angle;
|
||||
}
|
||||
if (null !== $this->business) {
|
||||
$res['Business'] = $this->business;
|
||||
}
|
||||
if (null !== $this->capital) {
|
||||
$res['Capital'] = $this->capital;
|
||||
}
|
||||
if (null !== $this->emblem) {
|
||||
$res['Emblem'] = null !== $this->emblem ? $this->emblem->toMap() : null;
|
||||
}
|
||||
if (null !== $this->establishDate) {
|
||||
$res['EstablishDate'] = $this->establishDate;
|
||||
}
|
||||
if (null !== $this->legalPerson) {
|
||||
$res['LegalPerson'] = $this->legalPerson;
|
||||
}
|
||||
if (null !== $this->name) {
|
||||
$res['Name'] = $this->name;
|
||||
}
|
||||
if (null !== $this->QRCode) {
|
||||
$res['QRCode'] = null !== $this->QRCode ? $this->QRCode->toMap() : null;
|
||||
}
|
||||
if (null !== $this->registerNumber) {
|
||||
$res['RegisterNumber'] = $this->registerNumber;
|
||||
}
|
||||
if (null !== $this->stamp) {
|
||||
$res['Stamp'] = null !== $this->stamp ? $this->stamp->toMap() : null;
|
||||
}
|
||||
if (null !== $this->title) {
|
||||
$res['Title'] = null !== $this->title ? $this->title->toMap() : null;
|
||||
}
|
||||
if (null !== $this->type) {
|
||||
$res['Type'] = $this->type;
|
||||
}
|
||||
if (null !== $this->validPeriod) {
|
||||
$res['ValidPeriod'] = $this->validPeriod;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return data
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Address'])) {
|
||||
$model->address = $map['Address'];
|
||||
}
|
||||
if (isset($map['Angle'])) {
|
||||
$model->angle = $map['Angle'];
|
||||
}
|
||||
if (isset($map['Business'])) {
|
||||
$model->business = $map['Business'];
|
||||
}
|
||||
if (isset($map['Capital'])) {
|
||||
$model->capital = $map['Capital'];
|
||||
}
|
||||
if (isset($map['Emblem'])) {
|
||||
$model->emblem = emblem::fromMap($map['Emblem']);
|
||||
}
|
||||
if (isset($map['EstablishDate'])) {
|
||||
$model->establishDate = $map['EstablishDate'];
|
||||
}
|
||||
if (isset($map['LegalPerson'])) {
|
||||
$model->legalPerson = $map['LegalPerson'];
|
||||
}
|
||||
if (isset($map['Name'])) {
|
||||
$model->name = $map['Name'];
|
||||
}
|
||||
if (isset($map['QRCode'])) {
|
||||
$model->QRCode = QRCode::fromMap($map['QRCode']);
|
||||
}
|
||||
if (isset($map['RegisterNumber'])) {
|
||||
$model->registerNumber = $map['RegisterNumber'];
|
||||
}
|
||||
if (isset($map['Stamp'])) {
|
||||
$model->stamp = stamp::fromMap($map['Stamp']);
|
||||
}
|
||||
if (isset($map['Title'])) {
|
||||
$model->title = title::fromMap($map['Title']);
|
||||
}
|
||||
if (isset($map['Type'])) {
|
||||
$model->type = $map['Type'];
|
||||
}
|
||||
if (isset($map['ValidPeriod'])) {
|
||||
$model->validPeriod = $map['ValidPeriod'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/QRCode.php
vendored
Normal file
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/QRCode.php
vendored
Normal file
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class QRCode extends Model
|
||||
{
|
||||
/**
|
||||
* @example 132
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $height;
|
||||
|
||||
/**
|
||||
* @example 156
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $left;
|
||||
|
||||
/**
|
||||
* @example 914
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $top;
|
||||
|
||||
/**
|
||||
* @example 126
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $width;
|
||||
protected $_name = [
|
||||
'height' => 'Height',
|
||||
'left' => 'Left',
|
||||
'top' => 'Top',
|
||||
'width' => 'Width',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->height) {
|
||||
$res['Height'] = $this->height;
|
||||
}
|
||||
if (null !== $this->left) {
|
||||
$res['Left'] = $this->left;
|
||||
}
|
||||
if (null !== $this->top) {
|
||||
$res['Top'] = $this->top;
|
||||
}
|
||||
if (null !== $this->width) {
|
||||
$res['Width'] = $this->width;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return QRCode
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Height'])) {
|
||||
$model->height = $map['Height'];
|
||||
}
|
||||
if (isset($map['Left'])) {
|
||||
$model->left = $map['Left'];
|
||||
}
|
||||
if (isset($map['Top'])) {
|
||||
$model->top = $map['Top'];
|
||||
}
|
||||
if (isset($map['Width'])) {
|
||||
$model->width = $map['Width'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/emblem.php
vendored
Normal file
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/emblem.php
vendored
Normal file
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class emblem extends Model
|
||||
{
|
||||
/**
|
||||
* @example 163
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $height;
|
||||
|
||||
/**
|
||||
* @example 366
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $left;
|
||||
|
||||
/**
|
||||
* @example 8
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $top;
|
||||
|
||||
/**
|
||||
* @example 162
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $width;
|
||||
protected $_name = [
|
||||
'height' => 'Height',
|
||||
'left' => 'Left',
|
||||
'top' => 'Top',
|
||||
'width' => 'Width',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->height) {
|
||||
$res['Height'] = $this->height;
|
||||
}
|
||||
if (null !== $this->left) {
|
||||
$res['Left'] = $this->left;
|
||||
}
|
||||
if (null !== $this->top) {
|
||||
$res['Top'] = $this->top;
|
||||
}
|
||||
if (null !== $this->width) {
|
||||
$res['Width'] = $this->width;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return emblem
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Height'])) {
|
||||
$model->height = $map['Height'];
|
||||
}
|
||||
if (isset($map['Left'])) {
|
||||
$model->left = $map['Left'];
|
||||
}
|
||||
if (isset($map['Top'])) {
|
||||
$model->top = $map['Top'];
|
||||
}
|
||||
if (isset($map['Width'])) {
|
||||
$model->width = $map['Width'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/stamp.php
vendored
Normal file
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/stamp.php
vendored
Normal file
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class stamp extends Model
|
||||
{
|
||||
/**
|
||||
* @example 154
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $height;
|
||||
|
||||
/**
|
||||
* @example 650
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $left;
|
||||
|
||||
/**
|
||||
* @example 1030
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $top;
|
||||
|
||||
/**
|
||||
* @example 154
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $width;
|
||||
protected $_name = [
|
||||
'height' => 'Height',
|
||||
'left' => 'Left',
|
||||
'top' => 'Top',
|
||||
'width' => 'Width',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->height) {
|
||||
$res['Height'] = $this->height;
|
||||
}
|
||||
if (null !== $this->left) {
|
||||
$res['Left'] = $this->left;
|
||||
}
|
||||
if (null !== $this->top) {
|
||||
$res['Top'] = $this->top;
|
||||
}
|
||||
if (null !== $this->width) {
|
||||
$res['Width'] = $this->width;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return stamp
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Height'])) {
|
||||
$model->height = $map['Height'];
|
||||
}
|
||||
if (isset($map['Left'])) {
|
||||
$model->left = $map['Left'];
|
||||
}
|
||||
if (isset($map['Top'])) {
|
||||
$model->top = $map['Top'];
|
||||
}
|
||||
if (isset($map['Width'])) {
|
||||
$model->width = $map['Width'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/title.php
vendored
Normal file
91
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeBusinessLicenseResponseBody/data/title.php
vendored
Normal file
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeBusinessLicenseResponseBody\data;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class title extends Model
|
||||
{
|
||||
/**
|
||||
* @example 10
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $height;
|
||||
|
||||
/**
|
||||
* @example 10
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $left;
|
||||
|
||||
/**
|
||||
* @example 10
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $top;
|
||||
|
||||
/**
|
||||
* @example 10
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $width;
|
||||
protected $_name = [
|
||||
'height' => 'Height',
|
||||
'left' => 'Left',
|
||||
'top' => 'Top',
|
||||
'width' => 'Width',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->height) {
|
||||
$res['Height'] = $this->height;
|
||||
}
|
||||
if (null !== $this->left) {
|
||||
$res['Left'] = $this->left;
|
||||
}
|
||||
if (null !== $this->top) {
|
||||
$res['Top'] = $this->top;
|
||||
}
|
||||
if (null !== $this->width) {
|
||||
$res['Width'] = $this->width;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return title
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Height'])) {
|
||||
$model->height = $map['Height'];
|
||||
}
|
||||
if (isset($map['Left'])) {
|
||||
$model->left = $map['Left'];
|
||||
}
|
||||
if (isset($map['Top'])) {
|
||||
$model->top = $map['Top'];
|
||||
}
|
||||
if (isset($map['Width'])) {
|
||||
$model->width = $map['Width'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
78
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterAdvanceRequest.php
vendored
Normal file
78
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
use GuzzleHttp\Psr7\Stream;
|
||||
|
||||
class RecognizeCharacterAdvanceRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeCharacter/RecognizeCharacter5.jpg
|
||||
*
|
||||
* @var Stream
|
||||
*/
|
||||
public $imageURLObject;
|
||||
|
||||
/**
|
||||
* @example 10
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $minHeight;
|
||||
|
||||
/**
|
||||
* @example true
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
public $outputProbability;
|
||||
protected $_name = [
|
||||
'imageURLObject' => 'ImageURL',
|
||||
'minHeight' => 'MinHeight',
|
||||
'outputProbability' => 'OutputProbability',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURLObject) {
|
||||
$res['ImageURL'] = $this->imageURLObject;
|
||||
}
|
||||
if (null !== $this->minHeight) {
|
||||
$res['MinHeight'] = $this->minHeight;
|
||||
}
|
||||
if (null !== $this->outputProbability) {
|
||||
$res['OutputProbability'] = $this->outputProbability;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeCharacterAdvanceRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURLObject = $map['ImageURL'];
|
||||
}
|
||||
if (isset($map['MinHeight'])) {
|
||||
$model->minHeight = $map['MinHeight'];
|
||||
}
|
||||
if (isset($map['OutputProbability'])) {
|
||||
$model->outputProbability = $map['OutputProbability'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
77
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterRequest.php
vendored
Normal file
77
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterRequest.php
vendored
Normal file
@ -0,0 +1,77 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeCharacterRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeCharacter/RecognizeCharacter5.jpg
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $imageURL;
|
||||
|
||||
/**
|
||||
* @example 10
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $minHeight;
|
||||
|
||||
/**
|
||||
* @example true
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
public $outputProbability;
|
||||
protected $_name = [
|
||||
'imageURL' => 'ImageURL',
|
||||
'minHeight' => 'MinHeight',
|
||||
'outputProbability' => 'OutputProbability',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURL) {
|
||||
$res['ImageURL'] = $this->imageURL;
|
||||
}
|
||||
if (null !== $this->minHeight) {
|
||||
$res['MinHeight'] = $this->minHeight;
|
||||
}
|
||||
if (null !== $this->outputProbability) {
|
||||
$res['OutputProbability'] = $this->outputProbability;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeCharacterRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURL = $map['ImageURL'];
|
||||
}
|
||||
if (isset($map['MinHeight'])) {
|
||||
$model->minHeight = $map['MinHeight'];
|
||||
}
|
||||
if (isset($map['OutputProbability'])) {
|
||||
$model->outputProbability = $map['OutputProbability'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeCharacterResponse extends Model
|
||||
{
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $headers;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $statusCode;
|
||||
|
||||
/**
|
||||
* @var RecognizeCharacterResponseBody
|
||||
*/
|
||||
public $body;
|
||||
protected $_name = [
|
||||
'headers' => 'headers',
|
||||
'statusCode' => 'statusCode',
|
||||
'body' => 'body',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
Model::validateRequired('headers', $this->headers, true);
|
||||
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||
Model::validateRequired('body', $this->body, true);
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->headers) {
|
||||
$res['headers'] = $this->headers;
|
||||
}
|
||||
if (null !== $this->statusCode) {
|
||||
$res['statusCode'] = $this->statusCode;
|
||||
}
|
||||
if (null !== $this->body) {
|
||||
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeCharacterResponse
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['headers'])) {
|
||||
$model->headers = $map['headers'];
|
||||
}
|
||||
if (isset($map['statusCode'])) {
|
||||
$model->statusCode = $map['statusCode'];
|
||||
}
|
||||
if (isset($map['body'])) {
|
||||
$model->body = RecognizeCharacterResponseBody::fromMap($map['body']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeCharacterResponseBody\data;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeCharacterResponseBody extends Model
|
||||
{
|
||||
/**
|
||||
* @var data
|
||||
*/
|
||||
public $data;
|
||||
|
||||
/**
|
||||
* @example 7A9BC7FE-2D42-57AF-93BC-09A229DD2F1D
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $requestId;
|
||||
protected $_name = [
|
||||
'data' => 'Data',
|
||||
'requestId' => 'RequestId',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->data) {
|
||||
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||
}
|
||||
if (null !== $this->requestId) {
|
||||
$res['RequestId'] = $this->requestId;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeCharacterResponseBody
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Data'])) {
|
||||
$model->data = data::fromMap($map['Data']);
|
||||
}
|
||||
if (isset($map['RequestId'])) {
|
||||
$model->requestId = $map['RequestId'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
60
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data.php
vendored
Normal file
60
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data.php
vendored
Normal file
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeCharacterResponseBody;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeCharacterResponseBody\data\results;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class data extends Model
|
||||
{
|
||||
/**
|
||||
* @var results[]
|
||||
*/
|
||||
public $results;
|
||||
protected $_name = [
|
||||
'results' => 'Results',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->results) {
|
||||
$res['Results'] = [];
|
||||
if (null !== $this->results && \is_array($this->results)) {
|
||||
$n = 0;
|
||||
foreach ($this->results as $item) {
|
||||
$res['Results'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return data
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Results'])) {
|
||||
if (!empty($map['Results'])) {
|
||||
$model->results = [];
|
||||
$n = 0;
|
||||
foreach ($map['Results'] as $item) {
|
||||
$model->results[$n++] = null !== $item ? results::fromMap($item) : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data/results.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeCharacterResponseBody/data/results.php
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeCharacterResponseBody\data;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeCharacterResponseBody\data\results\textRectangles;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class results extends Model
|
||||
{
|
||||
/**
|
||||
* @example 0.99
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $probability;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $text;
|
||||
|
||||
/**
|
||||
* @var textRectangles
|
||||
*/
|
||||
public $textRectangles;
|
||||
protected $_name = [
|
||||
'probability' => 'Probability',
|
||||
'text' => 'Text',
|
||||
'textRectangles' => 'TextRectangles',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->probability) {
|
||||
$res['Probability'] = $this->probability;
|
||||
}
|
||||
if (null !== $this->text) {
|
||||
$res['Text'] = $this->text;
|
||||
}
|
||||
if (null !== $this->textRectangles) {
|
||||
$res['TextRectangles'] = null !== $this->textRectangles ? $this->textRectangles->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return results
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Probability'])) {
|
||||
$model->probability = $map['Probability'];
|
||||
}
|
||||
if (isset($map['Text'])) {
|
||||
$model->text = $map['Text'];
|
||||
}
|
||||
if (isset($map['TextRectangles'])) {
|
||||
$model->textRectangles = textRectangles::fromMap($map['TextRectangles']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
@ -0,0 +1,105 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeCharacterResponseBody\data\results;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class textRectangles extends Model
|
||||
{
|
||||
/**
|
||||
* @example -65
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $angle;
|
||||
|
||||
/**
|
||||
* @example 409
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $height;
|
||||
|
||||
/**
|
||||
* @example 511
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $left;
|
||||
|
||||
/**
|
||||
* @example 150
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $top;
|
||||
|
||||
/**
|
||||
* @example 77
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $width;
|
||||
protected $_name = [
|
||||
'angle' => 'Angle',
|
||||
'height' => 'Height',
|
||||
'left' => 'Left',
|
||||
'top' => 'Top',
|
||||
'width' => 'Width',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->angle) {
|
||||
$res['Angle'] = $this->angle;
|
||||
}
|
||||
if (null !== $this->height) {
|
||||
$res['Height'] = $this->height;
|
||||
}
|
||||
if (null !== $this->left) {
|
||||
$res['Left'] = $this->left;
|
||||
}
|
||||
if (null !== $this->top) {
|
||||
$res['Top'] = $this->top;
|
||||
}
|
||||
if (null !== $this->width) {
|
||||
$res['Width'] = $this->width;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return textRectangles
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Angle'])) {
|
||||
$model->angle = $map['Angle'];
|
||||
}
|
||||
if (isset($map['Height'])) {
|
||||
$model->height = $map['Height'];
|
||||
}
|
||||
if (isset($map['Left'])) {
|
||||
$model->left = $map['Left'];
|
||||
}
|
||||
if (isset($map['Top'])) {
|
||||
$model->top = $map['Top'];
|
||||
}
|
||||
if (isset($map['Width'])) {
|
||||
$model->width = $map['Width'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
64
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseAdvanceRequest.php
vendored
Normal file
64
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
use GuzzleHttp\Psr7\Stream;
|
||||
|
||||
class RecognizeDriverLicenseAdvanceRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeDriverLicense/jsz2.jpg
|
||||
*
|
||||
* @var Stream
|
||||
*/
|
||||
public $imageURLObject;
|
||||
|
||||
/**
|
||||
* @example face
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $side;
|
||||
protected $_name = [
|
||||
'imageURLObject' => 'ImageURL',
|
||||
'side' => 'Side',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURLObject) {
|
||||
$res['ImageURL'] = $this->imageURLObject;
|
||||
}
|
||||
if (null !== $this->side) {
|
||||
$res['Side'] = $this->side;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeDriverLicenseAdvanceRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURLObject = $map['ImageURL'];
|
||||
}
|
||||
if (isset($map['Side'])) {
|
||||
$model->side = $map['Side'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
63
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseRequest.php
vendored
Normal file
63
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseRequest.php
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeDriverLicenseRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeDriverLicense/jsz2.jpg
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $imageURL;
|
||||
|
||||
/**
|
||||
* @example face
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $side;
|
||||
protected $_name = [
|
||||
'imageURL' => 'ImageURL',
|
||||
'side' => 'Side',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURL) {
|
||||
$res['ImageURL'] = $this->imageURL;
|
||||
}
|
||||
if (null !== $this->side) {
|
||||
$res['Side'] = $this->side;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeDriverLicenseRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURL = $map['ImageURL'];
|
||||
}
|
||||
if (isset($map['Side'])) {
|
||||
$model->side = $map['Side'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeDriverLicenseResponse extends Model
|
||||
{
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $headers;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $statusCode;
|
||||
|
||||
/**
|
||||
* @var RecognizeDriverLicenseResponseBody
|
||||
*/
|
||||
public $body;
|
||||
protected $_name = [
|
||||
'headers' => 'headers',
|
||||
'statusCode' => 'statusCode',
|
||||
'body' => 'body',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
Model::validateRequired('headers', $this->headers, true);
|
||||
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||
Model::validateRequired('body', $this->body, true);
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->headers) {
|
||||
$res['headers'] = $this->headers;
|
||||
}
|
||||
if (null !== $this->statusCode) {
|
||||
$res['statusCode'] = $this->statusCode;
|
||||
}
|
||||
if (null !== $this->body) {
|
||||
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeDriverLicenseResponse
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['headers'])) {
|
||||
$model->headers = $map['headers'];
|
||||
}
|
||||
if (isset($map['statusCode'])) {
|
||||
$model->statusCode = $map['statusCode'];
|
||||
}
|
||||
if (isset($map['body'])) {
|
||||
$model->body = RecognizeDriverLicenseResponseBody::fromMap($map['body']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDriverLicenseResponseBody\data;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeDriverLicenseResponseBody extends Model
|
||||
{
|
||||
/**
|
||||
* @var data
|
||||
*/
|
||||
public $data;
|
||||
|
||||
/**
|
||||
* @example 374D8C7E-9ECC-4750-A87F-50571702F175
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $requestId;
|
||||
protected $_name = [
|
||||
'data' => 'Data',
|
||||
'requestId' => 'RequestId',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->data) {
|
||||
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||
}
|
||||
if (null !== $this->requestId) {
|
||||
$res['RequestId'] = $this->requestId;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeDriverLicenseResponseBody
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Data'])) {
|
||||
$model->data = data::fromMap($map['Data']);
|
||||
}
|
||||
if (isset($map['RequestId'])) {
|
||||
$model->requestId = $map['RequestId'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
61
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data.php
vendored
Normal file
61
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data.php
vendored
Normal file
@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDriverLicenseResponseBody;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDriverLicenseResponseBody\data\backResult;
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDriverLicenseResponseBody\data\faceResult;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class data extends Model
|
||||
{
|
||||
/**
|
||||
* @var backResult
|
||||
*/
|
||||
public $backResult;
|
||||
|
||||
/**
|
||||
* @var faceResult
|
||||
*/
|
||||
public $faceResult;
|
||||
protected $_name = [
|
||||
'backResult' => 'BackResult',
|
||||
'faceResult' => 'FaceResult',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->backResult) {
|
||||
$res['BackResult'] = null !== $this->backResult ? $this->backResult->toMap() : null;
|
||||
}
|
||||
if (null !== $this->faceResult) {
|
||||
$res['FaceResult'] = null !== $this->faceResult ? $this->faceResult->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return data
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['BackResult'])) {
|
||||
$model->backResult = backResult::fromMap($map['BackResult']);
|
||||
}
|
||||
if (isset($map['FaceResult'])) {
|
||||
$model->faceResult = faceResult::fromMap($map['FaceResult']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
@ -0,0 +1,87 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDriverLicenseResponseBody\data;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class backResult extends Model
|
||||
{
|
||||
/**
|
||||
* @example 130601473955
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $archiveNumber;
|
||||
|
||||
/**
|
||||
* @example 210288898898898888
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $cardNumber;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $name;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $record;
|
||||
protected $_name = [
|
||||
'archiveNumber' => 'ArchiveNumber',
|
||||
'cardNumber' => 'CardNumber',
|
||||
'name' => 'Name',
|
||||
'record' => 'Record',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->archiveNumber) {
|
||||
$res['ArchiveNumber'] = $this->archiveNumber;
|
||||
}
|
||||
if (null !== $this->cardNumber) {
|
||||
$res['CardNumber'] = $this->cardNumber;
|
||||
}
|
||||
if (null !== $this->name) {
|
||||
$res['Name'] = $this->name;
|
||||
}
|
||||
if (null !== $this->record) {
|
||||
$res['Record'] = $this->record;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return backResult
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ArchiveNumber'])) {
|
||||
$model->archiveNumber = $map['ArchiveNumber'];
|
||||
}
|
||||
if (isset($map['CardNumber'])) {
|
||||
$model->cardNumber = $map['CardNumber'];
|
||||
}
|
||||
if (isset($map['Name'])) {
|
||||
$model->name = $map['Name'];
|
||||
}
|
||||
if (isset($map['Record'])) {
|
||||
$model->record = $map['Record'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
153
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data/faceResult.php
vendored
Normal file
153
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDriverLicenseResponseBody/data/faceResult.php
vendored
Normal file
@ -0,0 +1,153 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDriverLicenseResponseBody\data;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class faceResult extends Model
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $address;
|
||||
|
||||
/**
|
||||
* @example 20190201
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $endDate;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $gender;
|
||||
|
||||
/**
|
||||
* @example 20130208
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $issueDate;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $issueUnit;
|
||||
|
||||
/**
|
||||
* @example 210288898898898888
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $licenseNumber;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $name;
|
||||
|
||||
/**
|
||||
* @example 20130208
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $startDate;
|
||||
|
||||
/**
|
||||
* @example C1
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $vehicleType;
|
||||
protected $_name = [
|
||||
'address' => 'Address',
|
||||
'endDate' => 'EndDate',
|
||||
'gender' => 'Gender',
|
||||
'issueDate' => 'IssueDate',
|
||||
'issueUnit' => 'IssueUnit',
|
||||
'licenseNumber' => 'LicenseNumber',
|
||||
'name' => 'Name',
|
||||
'startDate' => 'StartDate',
|
||||
'vehicleType' => 'VehicleType',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->address) {
|
||||
$res['Address'] = $this->address;
|
||||
}
|
||||
if (null !== $this->endDate) {
|
||||
$res['EndDate'] = $this->endDate;
|
||||
}
|
||||
if (null !== $this->gender) {
|
||||
$res['Gender'] = $this->gender;
|
||||
}
|
||||
if (null !== $this->issueDate) {
|
||||
$res['IssueDate'] = $this->issueDate;
|
||||
}
|
||||
if (null !== $this->issueUnit) {
|
||||
$res['IssueUnit'] = $this->issueUnit;
|
||||
}
|
||||
if (null !== $this->licenseNumber) {
|
||||
$res['LicenseNumber'] = $this->licenseNumber;
|
||||
}
|
||||
if (null !== $this->name) {
|
||||
$res['Name'] = $this->name;
|
||||
}
|
||||
if (null !== $this->startDate) {
|
||||
$res['StartDate'] = $this->startDate;
|
||||
}
|
||||
if (null !== $this->vehicleType) {
|
||||
$res['VehicleType'] = $this->vehicleType;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return faceResult
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Address'])) {
|
||||
$model->address = $map['Address'];
|
||||
}
|
||||
if (isset($map['EndDate'])) {
|
||||
$model->endDate = $map['EndDate'];
|
||||
}
|
||||
if (isset($map['Gender'])) {
|
||||
$model->gender = $map['Gender'];
|
||||
}
|
||||
if (isset($map['IssueDate'])) {
|
||||
$model->issueDate = $map['IssueDate'];
|
||||
}
|
||||
if (isset($map['IssueUnit'])) {
|
||||
$model->issueUnit = $map['IssueUnit'];
|
||||
}
|
||||
if (isset($map['LicenseNumber'])) {
|
||||
$model->licenseNumber = $map['LicenseNumber'];
|
||||
}
|
||||
if (isset($map['Name'])) {
|
||||
$model->name = $map['Name'];
|
||||
}
|
||||
if (isset($map['StartDate'])) {
|
||||
$model->startDate = $map['StartDate'];
|
||||
}
|
||||
if (isset($map['VehicleType'])) {
|
||||
$model->vehicleType = $map['VehicleType'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
64
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseAdvanceRequest.php
vendored
Normal file
64
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
use GuzzleHttp\Psr7\Stream;
|
||||
|
||||
class RecognizeDrivingLicenseAdvanceRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeDrivingLicense/xsz2.jpg
|
||||
*
|
||||
* @var Stream
|
||||
*/
|
||||
public $imageURLObject;
|
||||
|
||||
/**
|
||||
* @example face
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $side;
|
||||
protected $_name = [
|
||||
'imageURLObject' => 'ImageURL',
|
||||
'side' => 'Side',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURLObject) {
|
||||
$res['ImageURL'] = $this->imageURLObject;
|
||||
}
|
||||
if (null !== $this->side) {
|
||||
$res['Side'] = $this->side;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeDrivingLicenseAdvanceRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURLObject = $map['ImageURL'];
|
||||
}
|
||||
if (isset($map['Side'])) {
|
||||
$model->side = $map['Side'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
63
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseRequest.php
vendored
Normal file
63
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseRequest.php
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeDrivingLicenseRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeDrivingLicense/xsz2.jpg
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $imageURL;
|
||||
|
||||
/**
|
||||
* @example face
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $side;
|
||||
protected $_name = [
|
||||
'imageURL' => 'ImageURL',
|
||||
'side' => 'Side',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURL) {
|
||||
$res['ImageURL'] = $this->imageURL;
|
||||
}
|
||||
if (null !== $this->side) {
|
||||
$res['Side'] = $this->side;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeDrivingLicenseRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURL = $map['ImageURL'];
|
||||
}
|
||||
if (isset($map['Side'])) {
|
||||
$model->side = $map['Side'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeDrivingLicenseResponse extends Model
|
||||
{
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $headers;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $statusCode;
|
||||
|
||||
/**
|
||||
* @var RecognizeDrivingLicenseResponseBody
|
||||
*/
|
||||
public $body;
|
||||
protected $_name = [
|
||||
'headers' => 'headers',
|
||||
'statusCode' => 'statusCode',
|
||||
'body' => 'body',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
Model::validateRequired('headers', $this->headers, true);
|
||||
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||
Model::validateRequired('body', $this->body, true);
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->headers) {
|
||||
$res['headers'] = $this->headers;
|
||||
}
|
||||
if (null !== $this->statusCode) {
|
||||
$res['statusCode'] = $this->statusCode;
|
||||
}
|
||||
if (null !== $this->body) {
|
||||
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeDrivingLicenseResponse
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['headers'])) {
|
||||
$model->headers = $map['headers'];
|
||||
}
|
||||
if (isset($map['statusCode'])) {
|
||||
$model->statusCode = $map['statusCode'];
|
||||
}
|
||||
if (isset($map['body'])) {
|
||||
$model->body = RecognizeDrivingLicenseResponseBody::fromMap($map['body']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDrivingLicenseResponseBody\data;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeDrivingLicenseResponseBody extends Model
|
||||
{
|
||||
/**
|
||||
* @var data
|
||||
*/
|
||||
public $data;
|
||||
|
||||
/**
|
||||
* @example 1DD989C1-4E08-4E04-9D5D-314901E91226
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $requestId;
|
||||
protected $_name = [
|
||||
'data' => 'Data',
|
||||
'requestId' => 'RequestId',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->data) {
|
||||
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||
}
|
||||
if (null !== $this->requestId) {
|
||||
$res['RequestId'] = $this->requestId;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeDrivingLicenseResponseBody
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Data'])) {
|
||||
$model->data = data::fromMap($map['Data']);
|
||||
}
|
||||
if (isset($map['RequestId'])) {
|
||||
$model->requestId = $map['RequestId'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
61
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data.php
vendored
Normal file
61
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data.php
vendored
Normal file
@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDrivingLicenseResponseBody;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDrivingLicenseResponseBody\data\backResult;
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDrivingLicenseResponseBody\data\faceResult;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class data extends Model
|
||||
{
|
||||
/**
|
||||
* @var backResult
|
||||
*/
|
||||
public $backResult;
|
||||
|
||||
/**
|
||||
* @var faceResult
|
||||
*/
|
||||
public $faceResult;
|
||||
protected $_name = [
|
||||
'backResult' => 'BackResult',
|
||||
'faceResult' => 'FaceResult',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->backResult) {
|
||||
$res['BackResult'] = null !== $this->backResult ? $this->backResult->toMap() : null;
|
||||
}
|
||||
if (null !== $this->faceResult) {
|
||||
$res['FaceResult'] = null !== $this->faceResult ? $this->faceResult->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return data
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['BackResult'])) {
|
||||
$model->backResult = backResult::fromMap($map['BackResult']);
|
||||
}
|
||||
if (isset($map['FaceResult'])) {
|
||||
$model->faceResult = faceResult::fromMap($map['FaceResult']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
169
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/backResult.php
vendored
Normal file
169
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/backResult.php
vendored
Normal file
@ -0,0 +1,169 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDrivingLicenseResponseBody\data;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class backResult extends Model
|
||||
{
|
||||
/**
|
||||
* @example 300
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $approvedLoad;
|
||||
|
||||
/**
|
||||
* @example 5
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $approvedPassengerCapacity;
|
||||
|
||||
/**
|
||||
* @example -
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $energyType;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $fileNumber;
|
||||
|
||||
/**
|
||||
* @example 2205
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $grossMass;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $inspectionRecord;
|
||||
|
||||
/**
|
||||
* @example 4945x1845x1480
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $overallDimension;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $plateNumber;
|
||||
|
||||
/**
|
||||
* @example 100
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $tractionMass;
|
||||
|
||||
/**
|
||||
* @example 2000
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $unladenMass;
|
||||
protected $_name = [
|
||||
'approvedLoad' => 'ApprovedLoad',
|
||||
'approvedPassengerCapacity' => 'ApprovedPassengerCapacity',
|
||||
'energyType' => 'EnergyType',
|
||||
'fileNumber' => 'FileNumber',
|
||||
'grossMass' => 'GrossMass',
|
||||
'inspectionRecord' => 'InspectionRecord',
|
||||
'overallDimension' => 'OverallDimension',
|
||||
'plateNumber' => 'PlateNumber',
|
||||
'tractionMass' => 'TractionMass',
|
||||
'unladenMass' => 'UnladenMass',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->approvedLoad) {
|
||||
$res['ApprovedLoad'] = $this->approvedLoad;
|
||||
}
|
||||
if (null !== $this->approvedPassengerCapacity) {
|
||||
$res['ApprovedPassengerCapacity'] = $this->approvedPassengerCapacity;
|
||||
}
|
||||
if (null !== $this->energyType) {
|
||||
$res['EnergyType'] = $this->energyType;
|
||||
}
|
||||
if (null !== $this->fileNumber) {
|
||||
$res['FileNumber'] = $this->fileNumber;
|
||||
}
|
||||
if (null !== $this->grossMass) {
|
||||
$res['GrossMass'] = $this->grossMass;
|
||||
}
|
||||
if (null !== $this->inspectionRecord) {
|
||||
$res['InspectionRecord'] = $this->inspectionRecord;
|
||||
}
|
||||
if (null !== $this->overallDimension) {
|
||||
$res['OverallDimension'] = $this->overallDimension;
|
||||
}
|
||||
if (null !== $this->plateNumber) {
|
||||
$res['PlateNumber'] = $this->plateNumber;
|
||||
}
|
||||
if (null !== $this->tractionMass) {
|
||||
$res['TractionMass'] = $this->tractionMass;
|
||||
}
|
||||
if (null !== $this->unladenMass) {
|
||||
$res['UnladenMass'] = $this->unladenMass;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return backResult
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ApprovedLoad'])) {
|
||||
$model->approvedLoad = $map['ApprovedLoad'];
|
||||
}
|
||||
if (isset($map['ApprovedPassengerCapacity'])) {
|
||||
$model->approvedPassengerCapacity = $map['ApprovedPassengerCapacity'];
|
||||
}
|
||||
if (isset($map['EnergyType'])) {
|
||||
$model->energyType = $map['EnergyType'];
|
||||
}
|
||||
if (isset($map['FileNumber'])) {
|
||||
$model->fileNumber = $map['FileNumber'];
|
||||
}
|
||||
if (isset($map['GrossMass'])) {
|
||||
$model->grossMass = $map['GrossMass'];
|
||||
}
|
||||
if (isset($map['InspectionRecord'])) {
|
||||
$model->inspectionRecord = $map['InspectionRecord'];
|
||||
}
|
||||
if (isset($map['OverallDimension'])) {
|
||||
$model->overallDimension = $map['OverallDimension'];
|
||||
}
|
||||
if (isset($map['PlateNumber'])) {
|
||||
$model->plateNumber = $map['PlateNumber'];
|
||||
}
|
||||
if (isset($map['TractionMass'])) {
|
||||
$model->tractionMass = $map['TractionMass'];
|
||||
}
|
||||
if (isset($map['UnladenMass'])) {
|
||||
$model->unladenMass = $map['UnladenMass'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
163
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/faceResult.php
vendored
Normal file
163
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeDrivingLicenseResponseBody/data/faceResult.php
vendored
Normal file
@ -0,0 +1,163 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeDrivingLicenseResponseBody\data;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class faceResult extends Model
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $address;
|
||||
|
||||
/**
|
||||
* @example 111111
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $engineNumber;
|
||||
|
||||
/**
|
||||
* @example 20180313
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $issueDate;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $model;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $owner;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $plateNumber;
|
||||
|
||||
/**
|
||||
* @example 20180312
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $registerDate;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $useCharacter;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $vehicleType;
|
||||
|
||||
/**
|
||||
* @example SSVUDDTT2J2022555
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $vin;
|
||||
protected $_name = [
|
||||
'address' => 'Address',
|
||||
'engineNumber' => 'EngineNumber',
|
||||
'issueDate' => 'IssueDate',
|
||||
'model' => 'Model',
|
||||
'owner' => 'Owner',
|
||||
'plateNumber' => 'PlateNumber',
|
||||
'registerDate' => 'RegisterDate',
|
||||
'useCharacter' => 'UseCharacter',
|
||||
'vehicleType' => 'VehicleType',
|
||||
'vin' => 'Vin',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->address) {
|
||||
$res['Address'] = $this->address;
|
||||
}
|
||||
if (null !== $this->engineNumber) {
|
||||
$res['EngineNumber'] = $this->engineNumber;
|
||||
}
|
||||
if (null !== $this->issueDate) {
|
||||
$res['IssueDate'] = $this->issueDate;
|
||||
}
|
||||
if (null !== $this->model) {
|
||||
$res['Model'] = $this->model;
|
||||
}
|
||||
if (null !== $this->owner) {
|
||||
$res['Owner'] = $this->owner;
|
||||
}
|
||||
if (null !== $this->plateNumber) {
|
||||
$res['PlateNumber'] = $this->plateNumber;
|
||||
}
|
||||
if (null !== $this->registerDate) {
|
||||
$res['RegisterDate'] = $this->registerDate;
|
||||
}
|
||||
if (null !== $this->useCharacter) {
|
||||
$res['UseCharacter'] = $this->useCharacter;
|
||||
}
|
||||
if (null !== $this->vehicleType) {
|
||||
$res['VehicleType'] = $this->vehicleType;
|
||||
}
|
||||
if (null !== $this->vin) {
|
||||
$res['Vin'] = $this->vin;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return faceResult
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Address'])) {
|
||||
$model->address = $map['Address'];
|
||||
}
|
||||
if (isset($map['EngineNumber'])) {
|
||||
$model->engineNumber = $map['EngineNumber'];
|
||||
}
|
||||
if (isset($map['IssueDate'])) {
|
||||
$model->issueDate = $map['IssueDate'];
|
||||
}
|
||||
if (isset($map['Model'])) {
|
||||
$model->model = $map['Model'];
|
||||
}
|
||||
if (isset($map['Owner'])) {
|
||||
$model->owner = $map['Owner'];
|
||||
}
|
||||
if (isset($map['PlateNumber'])) {
|
||||
$model->plateNumber = $map['PlateNumber'];
|
||||
}
|
||||
if (isset($map['RegisterDate'])) {
|
||||
$model->registerDate = $map['RegisterDate'];
|
||||
}
|
||||
if (isset($map['UseCharacter'])) {
|
||||
$model->useCharacter = $map['UseCharacter'];
|
||||
}
|
||||
if (isset($map['VehicleType'])) {
|
||||
$model->vehicleType = $map['VehicleType'];
|
||||
}
|
||||
if (isset($map['Vin'])) {
|
||||
$model->vin = $map['Vin'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
64
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardAdvanceRequest.php
vendored
Normal file
64
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
use GuzzleHttp\Psr7\Stream;
|
||||
|
||||
class RecognizeIdentityCardAdvanceRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeIdentityCard/sfz1.jpg
|
||||
*
|
||||
* @var Stream
|
||||
*/
|
||||
public $imageURLObject;
|
||||
|
||||
/**
|
||||
* @example face
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $side;
|
||||
protected $_name = [
|
||||
'imageURLObject' => 'ImageURL',
|
||||
'side' => 'Side',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURLObject) {
|
||||
$res['ImageURL'] = $this->imageURLObject;
|
||||
}
|
||||
if (null !== $this->side) {
|
||||
$res['Side'] = $this->side;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeIdentityCardAdvanceRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURLObject = $map['ImageURL'];
|
||||
}
|
||||
if (isset($map['Side'])) {
|
||||
$model->side = $map['Side'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
63
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardRequest.php
vendored
Normal file
63
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardRequest.php
vendored
Normal file
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeIdentityCardRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeIdentityCard/sfz1.jpg
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $imageURL;
|
||||
|
||||
/**
|
||||
* @example face
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $side;
|
||||
protected $_name = [
|
||||
'imageURL' => 'ImageURL',
|
||||
'side' => 'Side',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURL) {
|
||||
$res['ImageURL'] = $this->imageURL;
|
||||
}
|
||||
if (null !== $this->side) {
|
||||
$res['Side'] = $this->side;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeIdentityCardRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURL = $map['ImageURL'];
|
||||
}
|
||||
if (isset($map['Side'])) {
|
||||
$model->side = $map['Side'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeIdentityCardResponse extends Model
|
||||
{
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $headers;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $statusCode;
|
||||
|
||||
/**
|
||||
* @var RecognizeIdentityCardResponseBody
|
||||
*/
|
||||
public $body;
|
||||
protected $_name = [
|
||||
'headers' => 'headers',
|
||||
'statusCode' => 'statusCode',
|
||||
'body' => 'body',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
Model::validateRequired('headers', $this->headers, true);
|
||||
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||
Model::validateRequired('body', $this->body, true);
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->headers) {
|
||||
$res['headers'] = $this->headers;
|
||||
}
|
||||
if (null !== $this->statusCode) {
|
||||
$res['statusCode'] = $this->statusCode;
|
||||
}
|
||||
if (null !== $this->body) {
|
||||
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeIdentityCardResponse
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['headers'])) {
|
||||
$model->headers = $map['headers'];
|
||||
}
|
||||
if (isset($map['statusCode'])) {
|
||||
$model->statusCode = $map['statusCode'];
|
||||
}
|
||||
if (isset($map['body'])) {
|
||||
$model->body = RecognizeIdentityCardResponseBody::fromMap($map['body']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeIdentityCardResponseBody extends Model
|
||||
{
|
||||
/**
|
||||
* @var data
|
||||
*/
|
||||
public $data;
|
||||
|
||||
/**
|
||||
* @example D3F5BA69-79C4-46A4-B02B-58C4EEBC4C33
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $requestId;
|
||||
protected $_name = [
|
||||
'data' => 'Data',
|
||||
'requestId' => 'RequestId',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->data) {
|
||||
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||
}
|
||||
if (null !== $this->requestId) {
|
||||
$res['RequestId'] = $this->requestId;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeIdentityCardResponseBody
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Data'])) {
|
||||
$model->data = data::fromMap($map['Data']);
|
||||
}
|
||||
if (isset($map['RequestId'])) {
|
||||
$model->requestId = $map['RequestId'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
61
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data.php
vendored
Normal file
61
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data.php
vendored
Normal file
@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\backResult;
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class data extends Model
|
||||
{
|
||||
/**
|
||||
* @var backResult
|
||||
*/
|
||||
public $backResult;
|
||||
|
||||
/**
|
||||
* @var frontResult
|
||||
*/
|
||||
public $frontResult;
|
||||
protected $_name = [
|
||||
'backResult' => 'BackResult',
|
||||
'frontResult' => 'FrontResult',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->backResult) {
|
||||
$res['BackResult'] = null !== $this->backResult ? $this->backResult->toMap() : null;
|
||||
}
|
||||
if (null !== $this->frontResult) {
|
||||
$res['FrontResult'] = null !== $this->frontResult ? $this->frontResult->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return data
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['BackResult'])) {
|
||||
$model->backResult = backResult::fromMap($map['BackResult']);
|
||||
}
|
||||
if (isset($map['FrontResult'])) {
|
||||
$model->frontResult = frontResult::fromMap($map['FrontResult']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
@ -0,0 +1,75 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class backResult extends Model
|
||||
{
|
||||
/**
|
||||
* @example 19800101
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $endDate;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $issue;
|
||||
|
||||
/**
|
||||
* @example 19970101
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $startDate;
|
||||
protected $_name = [
|
||||
'endDate' => 'EndDate',
|
||||
'issue' => 'Issue',
|
||||
'startDate' => 'StartDate',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->endDate) {
|
||||
$res['EndDate'] = $this->endDate;
|
||||
}
|
||||
if (null !== $this->issue) {
|
||||
$res['Issue'] = $this->issue;
|
||||
}
|
||||
if (null !== $this->startDate) {
|
||||
$res['StartDate'] = $this->startDate;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return backResult
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['EndDate'])) {
|
||||
$model->endDate = $map['EndDate'];
|
||||
}
|
||||
if (isset($map['Issue'])) {
|
||||
$model->issue = $map['Issue'];
|
||||
}
|
||||
if (isset($map['StartDate'])) {
|
||||
$model->startDate = $map['StartDate'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
174
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult.php
vendored
Normal file
174
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeIdentityCardResponseBody/data/frontResult.php
vendored
Normal file
@ -0,0 +1,174 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\cardAreas;
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\faceRectangle;
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\faceRectVertices;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class frontResult extends Model
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $address;
|
||||
|
||||
/**
|
||||
* @example 19960111
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $birthDate;
|
||||
|
||||
/**
|
||||
* @var cardAreas[]
|
||||
*/
|
||||
public $cardAreas;
|
||||
|
||||
/**
|
||||
* @var faceRectVertices[]
|
||||
*/
|
||||
public $faceRectVertices;
|
||||
|
||||
/**
|
||||
* @var faceRectangle
|
||||
*/
|
||||
public $faceRectangle;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $gender;
|
||||
|
||||
/**
|
||||
* @example 310228199601115411
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $IDNumber;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $name;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $nationality;
|
||||
protected $_name = [
|
||||
'address' => 'Address',
|
||||
'birthDate' => 'BirthDate',
|
||||
'cardAreas' => 'CardAreas',
|
||||
'faceRectVertices' => 'FaceRectVertices',
|
||||
'faceRectangle' => 'FaceRectangle',
|
||||
'gender' => 'Gender',
|
||||
'IDNumber' => 'IDNumber',
|
||||
'name' => 'Name',
|
||||
'nationality' => 'Nationality',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->address) {
|
||||
$res['Address'] = $this->address;
|
||||
}
|
||||
if (null !== $this->birthDate) {
|
||||
$res['BirthDate'] = $this->birthDate;
|
||||
}
|
||||
if (null !== $this->cardAreas) {
|
||||
$res['CardAreas'] = [];
|
||||
if (null !== $this->cardAreas && \is_array($this->cardAreas)) {
|
||||
$n = 0;
|
||||
foreach ($this->cardAreas as $item) {
|
||||
$res['CardAreas'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (null !== $this->faceRectVertices) {
|
||||
$res['FaceRectVertices'] = [];
|
||||
if (null !== $this->faceRectVertices && \is_array($this->faceRectVertices)) {
|
||||
$n = 0;
|
||||
foreach ($this->faceRectVertices as $item) {
|
||||
$res['FaceRectVertices'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (null !== $this->faceRectangle) {
|
||||
$res['FaceRectangle'] = null !== $this->faceRectangle ? $this->faceRectangle->toMap() : null;
|
||||
}
|
||||
if (null !== $this->gender) {
|
||||
$res['Gender'] = $this->gender;
|
||||
}
|
||||
if (null !== $this->IDNumber) {
|
||||
$res['IDNumber'] = $this->IDNumber;
|
||||
}
|
||||
if (null !== $this->name) {
|
||||
$res['Name'] = $this->name;
|
||||
}
|
||||
if (null !== $this->nationality) {
|
||||
$res['Nationality'] = $this->nationality;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return frontResult
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Address'])) {
|
||||
$model->address = $map['Address'];
|
||||
}
|
||||
if (isset($map['BirthDate'])) {
|
||||
$model->birthDate = $map['BirthDate'];
|
||||
}
|
||||
if (isset($map['CardAreas'])) {
|
||||
if (!empty($map['CardAreas'])) {
|
||||
$model->cardAreas = [];
|
||||
$n = 0;
|
||||
foreach ($map['CardAreas'] as $item) {
|
||||
$model->cardAreas[$n++] = null !== $item ? cardAreas::fromMap($item) : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (isset($map['FaceRectVertices'])) {
|
||||
if (!empty($map['FaceRectVertices'])) {
|
||||
$model->faceRectVertices = [];
|
||||
$n = 0;
|
||||
foreach ($map['FaceRectVertices'] as $item) {
|
||||
$model->faceRectVertices[$n++] = null !== $item ? faceRectVertices::fromMap($item) : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (isset($map['FaceRectangle'])) {
|
||||
$model->faceRectangle = faceRectangle::fromMap($map['FaceRectangle']);
|
||||
}
|
||||
if (isset($map['Gender'])) {
|
||||
$model->gender = $map['Gender'];
|
||||
}
|
||||
if (isset($map['IDNumber'])) {
|
||||
$model->IDNumber = $map['IDNumber'];
|
||||
}
|
||||
if (isset($map['Name'])) {
|
||||
$model->name = $map['Name'];
|
||||
}
|
||||
if (isset($map['Nationality'])) {
|
||||
$model->nationality = $map['Nationality'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class cardAreas extends Model
|
||||
{
|
||||
/**
|
||||
* @example 40
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $x;
|
||||
|
||||
/**
|
||||
* @example 81
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $y;
|
||||
protected $_name = [
|
||||
'x' => 'X',
|
||||
'y' => 'Y',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->x) {
|
||||
$res['X'] = $this->x;
|
||||
}
|
||||
if (null !== $this->y) {
|
||||
$res['Y'] = $this->y;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return cardAreas
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['X'])) {
|
||||
$model->x = $map['X'];
|
||||
}
|
||||
if (isset($map['Y'])) {
|
||||
$model->y = $map['Y'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class faceRectVertices extends Model
|
||||
{
|
||||
/**
|
||||
* @example 429.46124267578125
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $x;
|
||||
|
||||
/**
|
||||
* @example 164.23321533203125
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $y;
|
||||
protected $_name = [
|
||||
'x' => 'X',
|
||||
'y' => 'Y',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->x) {
|
||||
$res['X'] = $this->x;
|
||||
}
|
||||
if (null !== $this->y) {
|
||||
$res['Y'] = $this->y;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return faceRectVertices
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['X'])) {
|
||||
$model->x = $map['X'];
|
||||
}
|
||||
if (isset($map['Y'])) {
|
||||
$model->y = $map['Y'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
@ -0,0 +1,75 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\faceRectangle\center;
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\faceRectangle\size;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class faceRectangle extends Model
|
||||
{
|
||||
/**
|
||||
* @example -87.710586547851562
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $angle;
|
||||
|
||||
/**
|
||||
* @var center
|
||||
*/
|
||||
public $center;
|
||||
|
||||
/**
|
||||
* @var size
|
||||
*/
|
||||
public $size;
|
||||
protected $_name = [
|
||||
'angle' => 'Angle',
|
||||
'center' => 'Center',
|
||||
'size' => 'Size',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->angle) {
|
||||
$res['Angle'] = $this->angle;
|
||||
}
|
||||
if (null !== $this->center) {
|
||||
$res['Center'] = null !== $this->center ? $this->center->toMap() : null;
|
||||
}
|
||||
if (null !== $this->size) {
|
||||
$res['Size'] = null !== $this->size ? $this->size->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return faceRectangle
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Angle'])) {
|
||||
$model->angle = $map['Angle'];
|
||||
}
|
||||
if (isset($map['Center'])) {
|
||||
$model->center = center::fromMap($map['Center']);
|
||||
}
|
||||
if (isset($map['Size'])) {
|
||||
$model->size = size::fromMap($map['Size']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\faceRectangle;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class center extends Model
|
||||
{
|
||||
/**
|
||||
* @example 475.59390258789062
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $x;
|
||||
|
||||
/**
|
||||
* @example 225.20643615722656
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $y;
|
||||
protected $_name = [
|
||||
'x' => 'X',
|
||||
'y' => 'Y',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->x) {
|
||||
$res['X'] = $this->x;
|
||||
}
|
||||
if (null !== $this->y) {
|
||||
$res['Y'] = $this->y;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return center
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['X'])) {
|
||||
$model->x = $map['X'];
|
||||
}
|
||||
if (isset($map['Y'])) {
|
||||
$model->y = $map['Y'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeIdentityCardResponseBody\data\frontResult\faceRectangle;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class size extends Model
|
||||
{
|
||||
/**
|
||||
* @example 97.063156127929688
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $height;
|
||||
|
||||
/**
|
||||
* @example 118.16333770751953
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $width;
|
||||
protected $_name = [
|
||||
'height' => 'Height',
|
||||
'width' => 'Width',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->height) {
|
||||
$res['Height'] = $this->height;
|
||||
}
|
||||
if (null !== $this->width) {
|
||||
$res['Width'] = $this->width;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return size
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Height'])) {
|
||||
$model->height = $map['Height'];
|
||||
}
|
||||
if (isset($map['Width'])) {
|
||||
$model->width = $map['Width'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateAdvanceRequest.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
use GuzzleHttp\Psr7\Stream;
|
||||
|
||||
class RecognizeLicensePlateAdvanceRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeLicensePlate/cpsb1.jpg
|
||||
*
|
||||
* @var Stream
|
||||
*/
|
||||
public $imageURLObject;
|
||||
protected $_name = [
|
||||
'imageURLObject' => 'ImageURL',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURLObject) {
|
||||
$res['ImageURL'] = $this->imageURLObject;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeLicensePlateAdvanceRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURLObject = $map['ImageURL'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeLicensePlateRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeLicensePlate/cpsb1.jpg
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $imageURL;
|
||||
protected $_name = [
|
||||
'imageURL' => 'ImageURL',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURL) {
|
||||
$res['ImageURL'] = $this->imageURL;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeLicensePlateRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURL = $map['ImageURL'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeLicensePlateResponse extends Model
|
||||
{
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $headers;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $statusCode;
|
||||
|
||||
/**
|
||||
* @var RecognizeLicensePlateResponseBody
|
||||
*/
|
||||
public $body;
|
||||
protected $_name = [
|
||||
'headers' => 'headers',
|
||||
'statusCode' => 'statusCode',
|
||||
'body' => 'body',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
Model::validateRequired('headers', $this->headers, true);
|
||||
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||
Model::validateRequired('body', $this->body, true);
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->headers) {
|
||||
$res['headers'] = $this->headers;
|
||||
}
|
||||
if (null !== $this->statusCode) {
|
||||
$res['statusCode'] = $this->statusCode;
|
||||
}
|
||||
if (null !== $this->body) {
|
||||
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeLicensePlateResponse
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['headers'])) {
|
||||
$model->headers = $map['headers'];
|
||||
}
|
||||
if (isset($map['statusCode'])) {
|
||||
$model->statusCode = $map['statusCode'];
|
||||
}
|
||||
if (isset($map['body'])) {
|
||||
$model->body = RecognizeLicensePlateResponseBody::fromMap($map['body']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeLicensePlateResponseBody extends Model
|
||||
{
|
||||
/**
|
||||
* @var data
|
||||
*/
|
||||
public $data;
|
||||
|
||||
/**
|
||||
* @example 3F10DAC3-CF4A-487C-BF33-3B8EB9AA12F2
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $requestId;
|
||||
protected $_name = [
|
||||
'data' => 'Data',
|
||||
'requestId' => 'RequestId',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->data) {
|
||||
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||
}
|
||||
if (null !== $this->requestId) {
|
||||
$res['RequestId'] = $this->requestId;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeLicensePlateResponseBody
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Data'])) {
|
||||
$model->data = data::fromMap($map['Data']);
|
||||
}
|
||||
if (isset($map['RequestId'])) {
|
||||
$model->requestId = $map['RequestId'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
60
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data.php
vendored
Normal file
60
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data.php
vendored
Normal file
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data\plates;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class data extends Model
|
||||
{
|
||||
/**
|
||||
* @var plates[]
|
||||
*/
|
||||
public $plates;
|
||||
protected $_name = [
|
||||
'plates' => 'Plates',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->plates) {
|
||||
$res['Plates'] = [];
|
||||
if (null !== $this->plates && \is_array($this->plates)) {
|
||||
$n = 0;
|
||||
foreach ($this->plates as $item) {
|
||||
$res['Plates'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return data
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Plates'])) {
|
||||
if (!empty($map['Plates'])) {
|
||||
$model->plates = [];
|
||||
$n = 0;
|
||||
foreach ($map['Plates'] as $item) {
|
||||
$model->plates[$n++] = null !== $item ? plates::fromMap($item) : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
125
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates.php
vendored
Normal file
125
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeLicensePlateResponseBody/data/plates.php
vendored
Normal file
@ -0,0 +1,125 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data\plates\positions;
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data\plates\roi;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class plates extends Model
|
||||
{
|
||||
/**
|
||||
* @example 0.99745339155197144
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $confidence;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $plateNumber;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $plateType;
|
||||
|
||||
/**
|
||||
* @example 1
|
||||
*
|
||||
* @var float
|
||||
*/
|
||||
public $plateTypeConfidence;
|
||||
|
||||
/**
|
||||
* @var positions[]
|
||||
*/
|
||||
public $positions;
|
||||
|
||||
/**
|
||||
* @var roi
|
||||
*/
|
||||
public $roi;
|
||||
protected $_name = [
|
||||
'confidence' => 'Confidence',
|
||||
'plateNumber' => 'PlateNumber',
|
||||
'plateType' => 'PlateType',
|
||||
'plateTypeConfidence' => 'PlateTypeConfidence',
|
||||
'positions' => 'Positions',
|
||||
'roi' => 'Roi',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->confidence) {
|
||||
$res['Confidence'] = $this->confidence;
|
||||
}
|
||||
if (null !== $this->plateNumber) {
|
||||
$res['PlateNumber'] = $this->plateNumber;
|
||||
}
|
||||
if (null !== $this->plateType) {
|
||||
$res['PlateType'] = $this->plateType;
|
||||
}
|
||||
if (null !== $this->plateTypeConfidence) {
|
||||
$res['PlateTypeConfidence'] = $this->plateTypeConfidence;
|
||||
}
|
||||
if (null !== $this->positions) {
|
||||
$res['Positions'] = [];
|
||||
if (null !== $this->positions && \is_array($this->positions)) {
|
||||
$n = 0;
|
||||
foreach ($this->positions as $item) {
|
||||
$res['Positions'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (null !== $this->roi) {
|
||||
$res['Roi'] = null !== $this->roi ? $this->roi->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return plates
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Confidence'])) {
|
||||
$model->confidence = $map['Confidence'];
|
||||
}
|
||||
if (isset($map['PlateNumber'])) {
|
||||
$model->plateNumber = $map['PlateNumber'];
|
||||
}
|
||||
if (isset($map['PlateType'])) {
|
||||
$model->plateType = $map['PlateType'];
|
||||
}
|
||||
if (isset($map['PlateTypeConfidence'])) {
|
||||
$model->plateTypeConfidence = $map['PlateTypeConfidence'];
|
||||
}
|
||||
if (isset($map['Positions'])) {
|
||||
if (!empty($map['Positions'])) {
|
||||
$model->positions = [];
|
||||
$n = 0;
|
||||
foreach ($map['Positions'] as $item) {
|
||||
$model->positions[$n++] = null !== $item ? positions::fromMap($item) : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (isset($map['Roi'])) {
|
||||
$model->roi = roi::fromMap($map['Roi']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data\plates;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class positions extends Model
|
||||
{
|
||||
/**
|
||||
* @example 466
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $x;
|
||||
|
||||
/**
|
||||
* @example 293
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $y;
|
||||
protected $_name = [
|
||||
'x' => 'X',
|
||||
'y' => 'Y',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->x) {
|
||||
$res['X'] = $this->x;
|
||||
}
|
||||
if (null !== $this->y) {
|
||||
$res['Y'] = $this->y;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return positions
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['X'])) {
|
||||
$model->x = $map['X'];
|
||||
}
|
||||
if (isset($map['Y'])) {
|
||||
$model->y = $map['Y'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeLicensePlateResponseBody\data\plates;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class roi extends Model
|
||||
{
|
||||
/**
|
||||
* @example 53
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $h;
|
||||
|
||||
/**
|
||||
* @example 141
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $w;
|
||||
|
||||
/**
|
||||
* @example 294
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $x;
|
||||
|
||||
/**
|
||||
* @example 256
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $y;
|
||||
protected $_name = [
|
||||
'h' => 'H',
|
||||
'w' => 'W',
|
||||
'x' => 'X',
|
||||
'y' => 'Y',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->h) {
|
||||
$res['H'] = $this->h;
|
||||
}
|
||||
if (null !== $this->w) {
|
||||
$res['W'] = $this->w;
|
||||
}
|
||||
if (null !== $this->x) {
|
||||
$res['X'] = $this->x;
|
||||
}
|
||||
if (null !== $this->y) {
|
||||
$res['Y'] = $this->y;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return roi
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['H'])) {
|
||||
$model->h = $map['H'];
|
||||
}
|
||||
if (isset($map['W'])) {
|
||||
$model->w = $map['W'];
|
||||
}
|
||||
if (isset($map['X'])) {
|
||||
$model->x = $map['X'];
|
||||
}
|
||||
if (isset($map['Y'])) {
|
||||
$model->y = $map['Y'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfAdvanceRequest.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
use GuzzleHttp\Psr7\Stream;
|
||||
|
||||
class RecognizePdfAdvanceRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example https://viapi-test.oss-cn-shanghai.aliyuncs.com/ocr/xxxx.pdf
|
||||
*
|
||||
* @var Stream
|
||||
*/
|
||||
public $fileURLObject;
|
||||
protected $_name = [
|
||||
'fileURLObject' => 'FileURL',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->fileURLObject) {
|
||||
$res['FileURL'] = $this->fileURLObject;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizePdfAdvanceRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['FileURL'])) {
|
||||
$model->fileURLObject = $map['FileURL'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfRequest.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfRequest.php
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizePdfRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @example https://viapi-test.oss-cn-shanghai.aliyuncs.com/ocr/xxxx.pdf
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $fileURL;
|
||||
protected $_name = [
|
||||
'fileURL' => 'FileURL',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->fileURL) {
|
||||
$res['FileURL'] = $this->fileURL;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizePdfRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['FileURL'])) {
|
||||
$model->fileURL = $map['FileURL'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizePdfResponse extends Model
|
||||
{
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $headers;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $statusCode;
|
||||
|
||||
/**
|
||||
* @var RecognizePdfResponseBody
|
||||
*/
|
||||
public $body;
|
||||
protected $_name = [
|
||||
'headers' => 'headers',
|
||||
'statusCode' => 'statusCode',
|
||||
'body' => 'body',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
Model::validateRequired('headers', $this->headers, true);
|
||||
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||
Model::validateRequired('body', $this->body, true);
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->headers) {
|
||||
$res['headers'] = $this->headers;
|
||||
}
|
||||
if (null !== $this->statusCode) {
|
||||
$res['statusCode'] = $this->statusCode;
|
||||
}
|
||||
if (null !== $this->body) {
|
||||
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizePdfResponse
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['headers'])) {
|
||||
$model->headers = $map['headers'];
|
||||
}
|
||||
if (isset($map['statusCode'])) {
|
||||
$model->statusCode = $map['statusCode'];
|
||||
}
|
||||
if (isset($map['body'])) {
|
||||
$model->body = RecognizePdfResponseBody::fromMap($map['body']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizePdfResponseBody\data;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizePdfResponseBody extends Model
|
||||
{
|
||||
/**
|
||||
* @var data
|
||||
*/
|
||||
public $data;
|
||||
|
||||
/**
|
||||
* @example CD9A9659-ABEE-4A7D-837F-9FDF40879A97
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $requestId;
|
||||
protected $_name = [
|
||||
'data' => 'Data',
|
||||
'requestId' => 'RequestId',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->data) {
|
||||
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||
}
|
||||
if (null !== $this->requestId) {
|
||||
$res['RequestId'] = $this->requestId;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizePdfResponseBody
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Data'])) {
|
||||
$model->data = data::fromMap($map['Data']);
|
||||
}
|
||||
if (isset($map['RequestId'])) {
|
||||
$model->requestId = $map['RequestId'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
144
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data.php
vendored
Normal file
144
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data.php
vendored
Normal file
@ -0,0 +1,144 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizePdfResponseBody;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizePdfResponseBody\data\wordsInfo;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class data extends Model
|
||||
{
|
||||
/**
|
||||
* @example 0
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $angle;
|
||||
|
||||
/**
|
||||
* @example 788
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $height;
|
||||
|
||||
/**
|
||||
* @example 610
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $orgHeight;
|
||||
|
||||
/**
|
||||
* @example 394
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $orgWidth;
|
||||
|
||||
/**
|
||||
* @example 1
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $pageIndex;
|
||||
|
||||
/**
|
||||
* @example 1220
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $width;
|
||||
|
||||
/**
|
||||
* @var wordsInfo[]
|
||||
*/
|
||||
public $wordsInfo;
|
||||
protected $_name = [
|
||||
'angle' => 'Angle',
|
||||
'height' => 'Height',
|
||||
'orgHeight' => 'OrgHeight',
|
||||
'orgWidth' => 'OrgWidth',
|
||||
'pageIndex' => 'PageIndex',
|
||||
'width' => 'Width',
|
||||
'wordsInfo' => 'WordsInfo',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->angle) {
|
||||
$res['Angle'] = $this->angle;
|
||||
}
|
||||
if (null !== $this->height) {
|
||||
$res['Height'] = $this->height;
|
||||
}
|
||||
if (null !== $this->orgHeight) {
|
||||
$res['OrgHeight'] = $this->orgHeight;
|
||||
}
|
||||
if (null !== $this->orgWidth) {
|
||||
$res['OrgWidth'] = $this->orgWidth;
|
||||
}
|
||||
if (null !== $this->pageIndex) {
|
||||
$res['PageIndex'] = $this->pageIndex;
|
||||
}
|
||||
if (null !== $this->width) {
|
||||
$res['Width'] = $this->width;
|
||||
}
|
||||
if (null !== $this->wordsInfo) {
|
||||
$res['WordsInfo'] = [];
|
||||
if (null !== $this->wordsInfo && \is_array($this->wordsInfo)) {
|
||||
$n = 0;
|
||||
foreach ($this->wordsInfo as $item) {
|
||||
$res['WordsInfo'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return data
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Angle'])) {
|
||||
$model->angle = $map['Angle'];
|
||||
}
|
||||
if (isset($map['Height'])) {
|
||||
$model->height = $map['Height'];
|
||||
}
|
||||
if (isset($map['OrgHeight'])) {
|
||||
$model->orgHeight = $map['OrgHeight'];
|
||||
}
|
||||
if (isset($map['OrgWidth'])) {
|
||||
$model->orgWidth = $map['OrgWidth'];
|
||||
}
|
||||
if (isset($map['PageIndex'])) {
|
||||
$model->pageIndex = $map['PageIndex'];
|
||||
}
|
||||
if (isset($map['Width'])) {
|
||||
$model->width = $map['Width'];
|
||||
}
|
||||
if (isset($map['WordsInfo'])) {
|
||||
if (!empty($map['WordsInfo'])) {
|
||||
$model->wordsInfo = [];
|
||||
$n = 0;
|
||||
foreach ($map['WordsInfo'] as $item) {
|
||||
$model->wordsInfo[$n++] = null !== $item ? wordsInfo::fromMap($item) : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
142
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data/wordsInfo.php
vendored
Normal file
142
vendor/alibabacloud/ocr-20191230/src/Models/RecognizePdfResponseBody/data/wordsInfo.php
vendored
Normal file
@ -0,0 +1,142 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizePdfResponseBody\data;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizePdfResponseBody\data\wordsInfo\positions;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class wordsInfo extends Model
|
||||
{
|
||||
/**
|
||||
* @example 0
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $angle;
|
||||
|
||||
/**
|
||||
* @example 16
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $height;
|
||||
|
||||
/**
|
||||
* @var positions[]
|
||||
*/
|
||||
public $positions;
|
||||
|
||||
/**
|
||||
* @example 205
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $width;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $word;
|
||||
|
||||
/**
|
||||
* @example 863
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $x;
|
||||
|
||||
/**
|
||||
* @example 46
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $y;
|
||||
protected $_name = [
|
||||
'angle' => 'Angle',
|
||||
'height' => 'Height',
|
||||
'positions' => 'Positions',
|
||||
'width' => 'Width',
|
||||
'word' => 'Word',
|
||||
'x' => 'X',
|
||||
'y' => 'Y',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->angle) {
|
||||
$res['Angle'] = $this->angle;
|
||||
}
|
||||
if (null !== $this->height) {
|
||||
$res['Height'] = $this->height;
|
||||
}
|
||||
if (null !== $this->positions) {
|
||||
$res['Positions'] = [];
|
||||
if (null !== $this->positions && \is_array($this->positions)) {
|
||||
$n = 0;
|
||||
foreach ($this->positions as $item) {
|
||||
$res['Positions'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (null !== $this->width) {
|
||||
$res['Width'] = $this->width;
|
||||
}
|
||||
if (null !== $this->word) {
|
||||
$res['Word'] = $this->word;
|
||||
}
|
||||
if (null !== $this->x) {
|
||||
$res['X'] = $this->x;
|
||||
}
|
||||
if (null !== $this->y) {
|
||||
$res['Y'] = $this->y;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return wordsInfo
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Angle'])) {
|
||||
$model->angle = $map['Angle'];
|
||||
}
|
||||
if (isset($map['Height'])) {
|
||||
$model->height = $map['Height'];
|
||||
}
|
||||
if (isset($map['Positions'])) {
|
||||
if (!empty($map['Positions'])) {
|
||||
$model->positions = [];
|
||||
$n = 0;
|
||||
foreach ($map['Positions'] as $item) {
|
||||
$model->positions[$n++] = null !== $item ? positions::fromMap($item) : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (isset($map['Width'])) {
|
||||
$model->width = $map['Width'];
|
||||
}
|
||||
if (isset($map['Word'])) {
|
||||
$model->word = $map['Word'];
|
||||
}
|
||||
if (isset($map['X'])) {
|
||||
$model->x = $map['X'];
|
||||
}
|
||||
if (isset($map['Y'])) {
|
||||
$model->y = $map['Y'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizePdfResponseBody\data\wordsInfo;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class positions extends Model
|
||||
{
|
||||
/**
|
||||
* @example 863
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $x;
|
||||
|
||||
/**
|
||||
* @example 43
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
public $y;
|
||||
protected $_name = [
|
||||
'x' => 'X',
|
||||
'y' => 'Y',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->x) {
|
||||
$res['X'] = $this->x;
|
||||
}
|
||||
if (null !== $this->y) {
|
||||
$res['Y'] = $this->y;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return positions
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['X'])) {
|
||||
$model->x = $map['X'];
|
||||
}
|
||||
if (isset($map['Y'])) {
|
||||
$model->y = $map['Y'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeAdvanceRequest\tasks;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeQrCodeAdvanceRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @description 1
|
||||
*
|
||||
* @var tasks[]
|
||||
*/
|
||||
public $tasks;
|
||||
protected $_name = [
|
||||
'tasks' => 'Tasks',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->tasks) {
|
||||
$res['Tasks'] = [];
|
||||
if (null !== $this->tasks && \is_array($this->tasks)) {
|
||||
$n = 0;
|
||||
foreach ($this->tasks as $item) {
|
||||
$res['Tasks'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeQrCodeAdvanceRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Tasks'])) {
|
||||
if (!empty($map['Tasks'])) {
|
||||
$model->tasks = [];
|
||||
$n = 0;
|
||||
foreach ($map['Tasks'] as $item) {
|
||||
$model->tasks[$n++] = null !== $item ? tasks::fromMap($item) : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest/tasks.php
vendored
Normal file
50
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeAdvanceRequest/tasks.php
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeAdvanceRequest;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
use GuzzleHttp\Psr7\Stream;
|
||||
|
||||
class tasks extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeQrCode/RecognizeQrCode6.jpg
|
||||
*
|
||||
* @var Stream
|
||||
*/
|
||||
public $imageURLObject;
|
||||
protected $_name = [
|
||||
'imageURLObject' => 'ImageURL',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURLObject) {
|
||||
$res['ImageURL'] = $this->imageURLObject;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return tasks
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURLObject = $map['ImageURL'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeRequest\tasks;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeQrCodeRequest extends Model
|
||||
{
|
||||
/**
|
||||
* @description 1
|
||||
*
|
||||
* @var tasks[]
|
||||
*/
|
||||
public $tasks;
|
||||
protected $_name = [
|
||||
'tasks' => 'Tasks',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->tasks) {
|
||||
$res['Tasks'] = [];
|
||||
if (null !== $this->tasks && \is_array($this->tasks)) {
|
||||
$n = 0;
|
||||
foreach ($this->tasks as $item) {
|
||||
$res['Tasks'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeQrCodeRequest
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Tasks'])) {
|
||||
if (!empty($map['Tasks'])) {
|
||||
$model->tasks = [];
|
||||
$n = 0;
|
||||
foreach ($map['Tasks'] as $item) {
|
||||
$model->tasks[$n++] = null !== $item ? tasks::fromMap($item) : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest/tasks.php
vendored
Normal file
49
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeRequest/tasks.php
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeRequest;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class tasks extends Model
|
||||
{
|
||||
/**
|
||||
* @example http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeQrCode/RecognizeQrCode6.jpg
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $imageURL;
|
||||
protected $_name = [
|
||||
'imageURL' => 'ImageURL',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->imageURL) {
|
||||
$res['ImageURL'] = $this->imageURL;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return tasks
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['ImageURL'])) {
|
||||
$model->imageURL = $map['ImageURL'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponse.php
vendored
Normal file
74
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponse.php
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeQrCodeResponse extends Model
|
||||
{
|
||||
/**
|
||||
* @var string[]
|
||||
*/
|
||||
public $headers;
|
||||
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $statusCode;
|
||||
|
||||
/**
|
||||
* @var RecognizeQrCodeResponseBody
|
||||
*/
|
||||
public $body;
|
||||
protected $_name = [
|
||||
'headers' => 'headers',
|
||||
'statusCode' => 'statusCode',
|
||||
'body' => 'body',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
Model::validateRequired('headers', $this->headers, true);
|
||||
Model::validateRequired('statusCode', $this->statusCode, true);
|
||||
Model::validateRequired('body', $this->body, true);
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->headers) {
|
||||
$res['headers'] = $this->headers;
|
||||
}
|
||||
if (null !== $this->statusCode) {
|
||||
$res['statusCode'] = $this->statusCode;
|
||||
}
|
||||
if (null !== $this->body) {
|
||||
$res['body'] = null !== $this->body ? $this->body->toMap() : null;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeQrCodeResponse
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['headers'])) {
|
||||
$model->headers = $map['headers'];
|
||||
}
|
||||
if (isset($map['statusCode'])) {
|
||||
$model->statusCode = $map['statusCode'];
|
||||
}
|
||||
if (isset($map['body'])) {
|
||||
$model->body = RecognizeQrCodeResponseBody::fromMap($map['body']);
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody.php
vendored
Normal file
62
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody.php
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeResponseBody\data;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class RecognizeQrCodeResponseBody extends Model
|
||||
{
|
||||
/**
|
||||
* @var data
|
||||
*/
|
||||
public $data;
|
||||
|
||||
/**
|
||||
* @example A53DC437-F883-4968-86D5-EB21FB044692
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $requestId;
|
||||
protected $_name = [
|
||||
'data' => 'Data',
|
||||
'requestId' => 'RequestId',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->data) {
|
||||
$res['Data'] = null !== $this->data ? $this->data->toMap() : null;
|
||||
}
|
||||
if (null !== $this->requestId) {
|
||||
$res['RequestId'] = $this->requestId;
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return RecognizeQrCodeResponseBody
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Data'])) {
|
||||
$model->data = data::fromMap($map['Data']);
|
||||
}
|
||||
if (isset($map['RequestId'])) {
|
||||
$model->requestId = $map['RequestId'];
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
60
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data.php
vendored
Normal file
60
vendor/alibabacloud/ocr-20191230/src/Models/RecognizeQrCodeResponseBody/data.php
vendored
Normal file
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
// This file is auto-generated, don't edit it. Thanks.
|
||||
|
||||
namespace AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeResponseBody;
|
||||
|
||||
use AlibabaCloud\SDK\Ocr\V20191230\Models\RecognizeQrCodeResponseBody\data\elements;
|
||||
use AlibabaCloud\Tea\Model;
|
||||
|
||||
class data extends Model
|
||||
{
|
||||
/**
|
||||
* @var elements[]
|
||||
*/
|
||||
public $elements;
|
||||
protected $_name = [
|
||||
'elements' => 'Elements',
|
||||
];
|
||||
|
||||
public function validate()
|
||||
{
|
||||
}
|
||||
|
||||
public function toMap()
|
||||
{
|
||||
$res = [];
|
||||
if (null !== $this->elements) {
|
||||
$res['Elements'] = [];
|
||||
if (null !== $this->elements && \is_array($this->elements)) {
|
||||
$n = 0;
|
||||
foreach ($this->elements as $item) {
|
||||
$res['Elements'][$n++] = null !== $item ? $item->toMap() : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $map
|
||||
*
|
||||
* @return data
|
||||
*/
|
||||
public static function fromMap($map = [])
|
||||
{
|
||||
$model = new self();
|
||||
if (isset($map['Elements'])) {
|
||||
if (!empty($map['Elements'])) {
|
||||
$model->elements = [];
|
||||
$n = 0;
|
||||
foreach ($map['Elements'] as $item) {
|
||||
$model->elements[$n++] = null !== $item ? elements::fromMap($item) : $item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user