WelfareGrantData.php 465 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\common\model;
  3. /**
  4. * 福利礼包表
  5. * @author Administrator
  6. */
  7. class WelfareGrantData extends \think\Model
  8. {
  9. protected $pk = 'id';
  10. protected $table = 'cy_welfare_grant_data';
  11. protected $dateFormat = false; //时间戳格式不自动转换
  12. public function getGrantTimeAttr($value)
  13. {
  14. if($value>0){
  15. return date('Y-m-d H:i:s', $value);
  16. }else{
  17. return '';
  18. }
  19. }
  20. }