CheckDetailService.php 186 B

12345678910111213
  1. <?php
  2. namespace app\service;
  3. use app\model\CheckDetail;
  4. class CheckDetailService
  5. {
  6. public static function addCheckDetail($data){
  7. return CheckDetail::create($data);
  8. }
  9. }