| | |
| | | 锘縰sing AutoMapper; |
| | | using OfficeOpenXml.FormulaParsing.Excel.Functions.RefAndLookup; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEAWCS_Core; |
| | | using WIDESEAWCS_Core.BaseRepository; |
| | | using WIDESEAWCS_Core.BaseServices; |
| | | using WIDESEAWCS_Core.Helper; |
| | | using WIDESEAWCS_ISystemServices; |
| | | using WIDESEAWCS_Model.Models; |
| | | |
| | |
| | | { |
| | | _mapper = mapper; |
| | | } |
| | | |
| | | public override WebResponseContent UpdateData(SaveModel saveModel) |
| | | { |
| | | int id = saveModel.MainData["id"].ObjToInt(); |
| | | int Row = saveModel.MainData["row"].ObjToInt(); |
| | | int Column = saveModel.MainData["column"].ObjToInt(); |
| | | dt_stationInfo locationInfo = BaseDal.QueryFirst(x => x.Id == id); |
| | | locationInfo.Row = Row; |
| | | locationInfo.Column = Column; |
| | | return UpdateData(locationInfo); |
| | | //return base.UpdateData(saveModel); |
| | | } |
| | | } |
| | | } |