Parameter.php 372 B

123456789101112131415
  1. <?php
  2. namespace app\api\model;
  3. use think\Model;
  4. class Parameter extends Model
  5. {
  6. protected $name = 'parameter';
  7. protected $resultSetType = 'collection';
  8. public function commoditycolor () {
  9. return $this->hasMany('commoditycolor','p_id','p_id');
  10. }
  11. public function commodity () {
  12. return $this->belongsTo('commodity','c_id','c_id');
  13. }
  14. }