* @day: 2017/12/20 */ namespace app\models\user; use app\admin\model\system\ShippingTemplatesFree; use app\admin\model\system\ShippingTemplatesRegion; use crmeb\basic\BaseModel; use think\db\exception\DataNotFoundException; use think\db\exception\DbException; use think\db\exception\ModelNotFoundException; use think\facade\Cache; use crmeb\traits\ModelTrait; use think\facade\Log; use app\models\system\SystemStore; use app\models\routine\RoutineTemplate; use app\models\user\{User, UserAddress, UserBill, UserSpread, WechatUser}; use crmeb\services\{ SystemConfigService, WechatTemplateService, workerman\ChannelService }; use app\admin\model\system\ShippingTemplates; /** * TODO 订单Model * Class StoreOrder * @package app\models\store */ class Push extends BaseModel { /** * 数据表主键 * @var string */ protected $pk = 'id'; /** * 模型名称 * @var string */ protected $name = 'push'; use ModelTrait; }