<?php
namespace app\api\model;
use think\Model;
class WeekTemplate extends Model
{
public function selectData($where){
$where['status'] = ['eq','1'];
$data = $this->where($where)->field('starttime,endtime')->order('weigh desc')->select();
return $data;
}
}