video_propModel.class.php 257 B

1234567891011
  1. <?php
  2. /**
  3. *
  4. */
  5. class video_propModel extends NewModel
  6. {
  7. public function getNewestOne($field = '', $where = '', $order = 'id desc')
  8. {
  9. return $this->table('video_prop_' . date('Ym'))->field($field)->order($order)->selectOne($where);
  10. }
  11. }