waichuModel.php 368 B

1234567891011121314
  1. <?php
  2. class waichuClassModel extends Model
  3. {
  4. public function initModel()
  5. {
  6. $this->settable('kqout');
  7. }
  8. public function getoutrows($dt, $uid)
  9. {
  10. $rows = $this->getall("uid=$uid and `status` in(0,1) and isturn=1 and `intime`>'$dt 00:00:00' and `outtime`<'$dt 23:59:59'",'id,atype,status,address,outtime,reason','intime asc');
  11. return $rows;
  12. }
  13. }
粤ICP备19079148号