using System; using System.Collections.Generic; using System.Linq; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using Microsoft.AspNetCore.Authorization; using System.Web; using MySystem.MainModels; using LitJson; using Library; namespace MySystem.Areas.Api.Controllers.v1 { [Area("Api")] [Route("Api/[controller]/[action]")] public class LdController : BaseController { public LdController(IHttpContextAccessor accessor, ILogger logger, IOptions setting) : base(accessor, logger, setting) { } #region 设置押金 public string SetDeposit(string value) { string content = ""; try { JsonData data = JsonMapper.ToObject(value); string snList = data["snList"].ToString(); int serviceFee = int.Parse(data["serviceFee"].ToString()); int brandId = int.Parse(data["brandId"].ToString()); content = PublicImportDataService.Instance.LDServiceFee(snList, serviceFee, brandId); } catch(Exception ex) { Utils.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "设置联动押金异常"); } return content; } #endregion #region 设置费率 public string SetFee(string value) { string content = ""; try { JsonData data = JsonMapper.ToObject(value); string merNo = data["merNo"].ToString(); string fee = data["fee"].ToString(); int brandId = int.Parse(data["brandId"].ToString()); content = PublicImportDataService.Instance.LDFeeRate(merNo, fee, brandId); } catch(Exception ex) { Utils.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "设置联动费率异常"); } return content; } #endregion } }