'ID', 'mall_id' => '商城ID', 'level' => '等级(权重)', 'total_bonus_money' => '本次分红总额,单位:元', 'bonus_num' => '分红人数', 'bonus_money' => '每人可得分红金额,单位:元', 'cycle_type' => '分红周期[1=日,2=周,3=月]', 'date' => '执行日期,如:20220919', 'status' => '状态[-1:删除;0:禁用;1启用]', 'created_at' => '创建时间', 'updated_at' => '更新时间', ]; } /** * 生成数据 * @Author: lun * @DateTime: 2022/9/19 0019 16:37 * @Copyright: copyright (c) 2021 广东七件事集团 * @param $params * @return array|bool */ public static function create($params) { try { $model = new self(); $model->loadDefaultValues(); if (!$model->load($params, '') || !$model->save()) throw new Exception($model->getErrorMessage()); return $model->toArray(); } catch (\Exception $e) { self::setStaticError($e->getMessage()); return false; } } }