截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Distribution.php 496B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\common\model\distribution;
  3. use app\common\basics\Models;
  4. use think\model\concern\SoftDelete;
  5. class Distribution extends Models
  6. {
  7. use SoftDelete;
  8. protected $deleteTime = 'delete_time';
  9. /**
  10. * @notes 成为分销会员时间
  11. * @param $value
  12. * @return false|string
  13. * @author Tab
  14. * @date 2021/9/2 18:59
  15. */
  16. public function getDistributionTimeAttr($value)
  17. {
  18. return empty($value) ? '' : date('Y-m-d H:i:s', $value);
  19. }
  20. }