zoukankan      html  css  js  c++  java
  • 一沙框架(yishaadmin)在后台保存或修改数据之前修改某个字段值的方法

    一沙框架(yishaadmin)在后台保存或修改数据之前修改某个字段值的方法

    1、在controller中

    1 [HttpPost]
    2    [AuthorizeFilter("device:devicetype:add,device:devicetype:edit")]
    3    public async Task<ActionResult> SaveFormJson(DeviceTypeEntity entity)
    4    {
    5      entity.F_MaterialType = 1;//物料类型:1-设备 2-部件
    6      TData<string> obj = await deviceTypeBLL.SaveForm(entity);
    7      return Json(obj);
    8    }          

    2、在BLL中

     1 [HttpPost]
     2         public async Task<TData<OperatorInfo>> Login([FromQuery] string userName, [FromQuery] string password, [FromQuery] string myCid)
     3         {
     4             TData<OperatorInfo> obj = new TData<OperatorInfo>();
     5             TData<UserEntity> userObj = await userBLL.CheckLogin(userName, password, (int)PlatformEnum.WebApi);
     6             if (userObj.Tag == 1)
     7             {
     8                 userObj.Data.ClientId = myCid;//修改字段ClientId的值为myCid
     9                 await new UserBLL().UpdateUser(userObj.Data);
    10                 await Operator.Instance.AddCurrent(userObj.Data.ApiToken);
    11                 obj.Data = await Operator.Instance.Current(userObj.Data.ApiToken);
    12             }
    13             obj.Tag = userObj.Tag;
    14             obj.Message = userObj.Message;
    15             return obj;
    16         }

      

  • 相关阅读:
    Microsoft Word 段前距设置和页眉设置
    JavaScript 跨域小总结
    JavaScript 闭包系列二(匿名函数及函数的闭包)

    JavaScript 变量作用域
    JavaScript 闭包系列一
    JavaScript 继承
    JavaScript 对象的创建
    MySQL(2): 窗口函数备份与恢复性能优化权限管理
    组建LAN
  • 原文地址:https://www.cnblogs.com/wishit/p/13446272.html
Copyright © 2011-2022 走看看