1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class AccountLog extends Model
- {
- public $table = 'account_logs';
- protected $fillable = [
- 'from_type',
- 'from_name',
- 'to_type',
- 'from_id',
- 'to_id',
- 'to_name',
- 'op',
- 'from_amount',
- 'to_amount',
- 'transaction_id',
- 'avatar',
- 'channel',
- 'title',
- 'dream_id',
- 'note',
- ];
- //交易行为定义
- const OP_CHARGE = 'CHARGE';
- const OP_SUPPORT = 'SUPPORT';
- const OP_WITHDRAW = 'WITHDRAW';
- const OP_DREAM = 'DREAM';
- //货币类型定义
- const TYPE_BALANCE = 1;
- const TYPE_COIN = 2;
- const TYPE_CASH = 3;
- //交易渠道定义
- const CHANNEL_PLATFORM = 'platform';
- const CHANNEL_ALIPAY = 'alipay';
- const CHANNEL_WECHATPAY = 'wechatpay';
- // //交易方向
- // const DIRECTION_INC = 1; //增加
- // const DIRECTION_DEC = 2; //减少
- //交易行为枚举
- private static $_op = [
- self::OP_CHARGE => '充值',
- self::OP_SUPPORT => '支持梦想',
- self::OP_WITHDRAW => '提现',
- self::OP_DREAM => '梦想结束',
- ];
- //货币类型枚举
- private static $_type = [
- self::TYPE_BALANCE => '余额',
- self::TYPE_COIN => '梦想币',
- self::TYPE_CASH => '现金',
- ];
- //交易渠道枚举
- private static $_channels = [
- self::CHANNEL_PLATFORM => '平台内交易',
- self::CHANNEL_ALIPAY => '支付宝',
- self::CHANNEL_WECHATPAY => '微信支付',
- ];
- // // 交易流向
- // private static $_direction = [
- // self::DIRECTION_INC => '收入',
- // self::DIRECTION_DEC => '支出'
- // ];
- // 获取所有操作
- public static function getAllop() {
- return self::$_op;
- }
- // 获取所有类型
- public static function getAllType() {
- return self::$_type;
- }
- //获取所有渠道
- public static function getAllChannels() {
- return self::$_channels;
- }
- // 获取交易流向
- public static function getAllDirections() {
- return self::$_direction;
- }
- }
|