liyaozhi
2025-10-28 1320688354fd168c51cf2e05f29a2253f4ed9c00
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
 
namespace app\api\model\product;
 
use app\common\model\settings\DeliveryRule as DeliveryRuleModel;
/**
 * 配送模板区域及运费模型
 */
class DeliveryRule extends DeliveryRuleModel
{
    /**
     * 隐藏字段
     */
    protected $hidden = [
        'app_id',
        'create_time',
        'update_time'
    ];
 
}