ProjectScheduleService.php 340 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\common\service;
  3. use app\common\model\ProjectSchedule;
  4. class ProjectScheduleService extends Service
  5. {
  6. public function create($param = [])
  7. {
  8. $param = $this->autoParams($param);
  9. return ProjectSchedule::create($param);
  10. }
  11. public function update($param = [])
  12. {
  13. }
  14. }