|
@@ -14,12 +14,25 @@ class ShopWalletBusiness extends BusinessResult
|
|
|
{
|
|
|
// 日志变动类型
|
|
|
const log_type = [
|
|
|
- 1 => '系统调节',//money + -
|
|
|
- 40 => '酒店预定',//money + -
|
|
|
- 50 => '餐厅预定',//money + -
|
|
|
- 60 => '老年大学活动报名',//money + -
|
|
|
- 70 => '线下消费',//money + -
|
|
|
- 80 => '旅游预定',//money + -
|
|
|
+ //balance 商家的经营成本
|
|
|
+ 1 => '系统调节',//balance + -
|
|
|
+
|
|
|
+ 31 => '商城订单支付', //balance + //商城的不给维护
|
|
|
+ 32 => '商城订单退款', //balance - //商城的不给维护
|
|
|
+
|
|
|
+ 40 => '酒店预定',//balance + -
|
|
|
+ 50 => '餐厅预定',//balance + -
|
|
|
+ 60 => '老年大学活动报名',//balance + -
|
|
|
+ 70 => '线下消费',//balance + - //线下的用不到,分账了
|
|
|
+ 80 => '旅游预定',//balance + -
|
|
|
+
|
|
|
+ //money 40期的收益
|
|
|
+ 400 => '40期', //money +
|
|
|
+
|
|
|
+
|
|
|
+ //让利积分
|
|
|
+ 201 => '用户来消费', //points +
|
|
|
+ 202 => '周期结束释放', //points -
|
|
|
];
|
|
|
|
|
|
/**
|