ProcessStatistic.php 455 B

1234567891011121314151617
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ProcessStatistic extends Model
  5. {
  6. //重新约定主键且不允许自增
  7. protected $primaryKey='process_id';
  8. public $incrementing=false;
  9. protected $fillable=[
  10. 'process_id','started_at','ended_at','revenue','duration_days',
  11. 'duration_man_hours','top_capacity','bottom_capacity','average_capacity','total_cost','gross_profit','gross_profit_rate'
  12. ];
  13. }