nk-lihaink-cn/app/common/model/merchant/store/ShippingTemplateFree.php
2023-03-16 12:18:52 +08:00

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);
}
}