You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.5 KiB
102 lines
2.5 KiB
<?php
|
|
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
namespace app\common\model\store\shipping;
|
|
|
|
use app\common\model\BaseModel;
|
|
|
|
class ShippingTemplate extends BaseModel
|
|
{
|
|
/**
|
|
* Author:Qinii
|
|
* Date: 2020/5/6
|
|
* Time: 14:20
|
|
* @return string
|
|
*/
|
|
public static function tablePk(): string
|
|
{
|
|
return 'shipping_template_id';
|
|
}
|
|
|
|
|
|
/**
|
|
* Author:Qinii
|
|
* Date: 2020/5/6
|
|
* Time: 14:20
|
|
* @return string
|
|
*/
|
|
public static function tableName(): string
|
|
{
|
|
return 'shipping_template';
|
|
}
|
|
|
|
/**
|
|
* 包邮
|
|
* @Author:Qinii
|
|
* @Date: 2020/5/6
|
|
* @Time: 18:00
|
|
* @return \think\model\relation\HasMany
|
|
*/
|
|
public function free()
|
|
{
|
|
return $this->hasMany(ShippingTemplateFree::class, 'temp_id', 'shipping_template_id');
|
|
}
|
|
|
|
/**
|
|
* 配送
|
|
* @Author:Qinii
|
|
* @Date: 2020/5/6
|
|
* @Time: 18:01
|
|
* @return \think\model\relation\HasMany
|
|
*/
|
|
public function region()
|
|
{
|
|
return $this->hasMany(ShippingTemplateRegion::class, 'temp_id', 'shipping_template_id');
|
|
}
|
|
|
|
/**
|
|
* @return \think\model\relation\HasOne
|
|
* @author xaboy
|
|
* @day 2020/6/4
|
|
*/
|
|
public function freeAddress()
|
|
{
|
|
return $this->hasOne(ShippingTemplateFree::class, 'temp_id', 'shipping_template_id');
|
|
}
|
|
|
|
/**
|
|
* @return \think\model\relation\HasOne
|
|
* @author xaboy
|
|
* @day 2020/6/4
|
|
*/
|
|
public function regionAddress()
|
|
{
|
|
return $this->hasOne(ShippingTemplateRegion::class, 'temp_id', 'shipping_template_id');
|
|
}
|
|
|
|
/**
|
|
* @Author:Qinii
|
|
* @Date: 2020/5/6
|
|
* @Time: 18:01
|
|
* @return \think\model\relation\HasOne
|
|
*/
|
|
public function undelives()
|
|
{
|
|
return $this->hasOne(ShippingTemplateUndelivery::class, 'temp_id', 'shipping_template_id');
|
|
}
|
|
|
|
public function searchShippingTemplateIdAttr($query,$value)
|
|
{
|
|
$query->where('shipping_template_id',$value);
|
|
}
|
|
}
|
|
|