24 lines
479 B
PHP
24 lines
479 B
PHP
<?php
|
|
|
|
namespace app\common\model\merchant\store;
|
|
|
|
use think\Model;
|
|
|
|
class ShippingTemplateFree extends Model
|
|
{
|
|
protected $connection = 'shop';
|
|
protected $table = 'eb_shipping_template_free';
|
|
protected $pk = 'shipping_template_free_id';
|
|
|
|
|
|
/**
|
|
* @Author:Qinii
|
|
* @Date: 2020/5/13
|
|
* @param array $data
|
|
* @return mixed
|
|
*/
|
|
public function addData(array $data)
|
|
{
|
|
return self::insertAll($data);
|
|
}
|
|
} |