Company.php 631 B

123456789101112131415161718
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. // 供应商公司
  5. class Company extends Model
  6. {
  7. public function goodsList(){
  8. return $this->hasMany('SupplierGoods','company_id')
  9. ->where('is_deleted',0)->where('release_time','< time',date("Y-m-d H:i:s"))
  10. ->field('id,supplier_id,name,cover,read_num,create_at');
  11. }
  12. // 获取公司名称
  13. public static function getCompanyName($is_all = 0)
  14. {
  15. return self::when($is_all,function ($query)use ($is_all){if(!$is_all)return $query->where('status',1)->where('is_deleted',0);})->column('id,title,is_deleted,status','id');
  16. }
  17. }