OwnerInStorageRule.php 479 B

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