LogisticsCompany.php 235 B

123456789101112131415
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. /**
  5. * 会员余额日志模型
  6. */
  7. class LogisticsCompany Extends Model
  8. {
  9. public static function getNameById($id){
  10. return self::where('id',$id)->value('name');
  11. }
  12. }