hrtrsalaryModel.php 360 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * 人事模块.调薪
  4. */
  5. class flow_hrtrsalaryClassModel extends flowModel
  6. {
  7. protected function flowbillwhere($uid, $lx)
  8. {
  9. $key = $this->rock->post('key');
  10. $where = '';
  11. if($key!='')$where.=" and (b.udeptname like '%$key%' or b.`uname` like '%$key%')";
  12. return array(
  13. 'keywhere' => $where,
  14. 'leftbill' => 1
  15. );
  16. }
  17. }
粤ICP备19079148号