UserInvoice.php 1.2 KB
<?php

namespace app\api\model;

use think\Model;


class UserInvoice extends Model
{
    // 自动写入时间戳字段
    protected $autoWriteTimestamp = 'int';

    // 定义时间戳字段名
    protected $createTime = 'createtime';
    protected $updateTime = 'updatetime';
    protected $deleteTime = false;

    // 追加属性
    protected $append = [

    ];


    public function getStatusList()
    {
        return ['1' => __('Status 1'), '2' => __('Status 2')];
    }


    public function getIsGroupTextAttr($value, $data)
    {
        $value = $value ? $value : (isset($data['is_group']) ? $data['is_group'] : '');
        $list = $this->getIsGroupList();
        return isset($list[$value]) ? $list[$value] : '';
    }


    public function selectData($where, $limit)
    {
        $where['g.status'] = 1;
        $data = $this->alias('g')
            ->join('fa_country c', 'g.country_id=c.id')
            ->where($where)
            ->field('g.id goods_id,g.ch_name,g.en_name,g.image,g.goods_price,c.ch_name ch_country_name,c.en_name en_country_name,is_vip_price,group_price,stock_num')
            ->limit($limit)
            ->order('g.weigh desc')
            ->select();
        return $data;
    }

}