| 12345678910111213141516171819202122232425 |
- <?php
- namespace app\common\model;
- /**
- * 福利礼包表
- * @author Administrator
- */
- class WelfareGrantData extends \think\Model
- {
- protected $pk = 'id';
- protected $table = 'cy_welfare_grant_data';
- protected $dateFormat = false; //时间戳格式不自动转换
- public function getGrantTimeAttr($value)
- {
- if($value>0){
- return date('Y-m-d H:i:s', $value);
- }else{
- return '';
- }
- }
- }
|