| 1234567891011121314151617181920212223 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- class OwnerAreaReport extends Model
- {
- protected $fillable = [
- "owner_id", //货主ID
- "counting_month", //结算月
- "area_on_tray", //货物整托
- "area_on_half_tray",//货物半托
- "area_on_flat", //平面区面积
- "accounting_area", //结算面积
- "status" //状态
- ];
- public function owner()
- { //货主
- return $this->hasOne(Owner::class,"id","owner_id");
- }
- }
|