OwnerInStorageRule.php 441 B

1234567891011121314151617181920
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class OwnerInStorageRule extends Model
  5. {
  6. protected $fillable = [
  7. "owner_price_operation_id", //作业计费ID
  8. "amount", //计量
  9. "unit_id", //单位ID
  10. "unit_price", //单价
  11. ];
  12. public function unit()
  13. { //单位
  14. return $this->hasOne(Unit::class,"id","unit_id");
  15. }
  16. }