| | |
| | | user.status, |
| | | user.parentId, |
| | | user.passWord, |
| | | user.IsBaifenPromotion, |
| | | gradeName = userGrade != null ? userGrade.title : "", |
| | | gradeKey= userGrade != null ? userGrade.valueKey:"", |
| | | userCouponCount, |
| | |
| | | |
| | | #region 提现申请 |
| | | /// <summary> |
| | | /// 提现申请 |
| | | /// 提现申请 type 银行线下转账 = 0, 企业付款到零钱 = 1, 企商家转账到零钱 = 3 企业付款到银行卡 = 2, |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpPost] |
| | |
| | | public async Task<WebApiCallBack> Cash([FromBody] FMIntId entity) |
| | | { |
| | | var money = entity.data.ObjectToDecimal(0); |
| | | var jm = await _userTocashServices.Tocash(_user.ID, money, entity.id); |
| | | var Paytype = entity.data.ObjectToDecimal(0); |
| | | var jm = await _userTocashServices.Tocash(_user.ID, money, entity.id,type: (GlobalEnumVars.UserTocashType)Paytype); |
| | | return jm; |
| | | } |
| | | |