123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
-
- namespace OASystem.API.Controllers
- {
- /// <summary>
- /// 资料相关
- /// </summary>
- //[Authorize]
- [Route("api/[controller]/[action]")]
- public class ResourceController : ControllerBase
- {
- private readonly IMapper _mapper;
- private readonly IConfiguration _config;
- private readonly CarDataRepository _carDataRep;
-
- public ResourceController(IMapper mapper, IConfiguration config,CarDataRepository carDataRep)
- {
- _mapper = mapper;
- _config = config;
- _carDataRep = carDataRep;
- }
- #region 车公司资料板块
- /// <summary>
- /// 车公司信息查询
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> QuerCarData(DtoBase dto)
- {
- try
- {
- if (dto.PortType==1)
- {
- var carDada = _carDataRep.QueryDto<Res_CarData, CarDataView>().ToList();
- if (carDada.Count == 0)
- {
- return Ok(JsonView(false, "暂无数据!"));
- }
- carDada = carDada.OrderByDescending(s => s.CreateTime).ToList();
- return Ok(JsonView(true, "查询成功", carDada));
- }
- else if(dto.PortType==2)
- {
- var carDada = _carDataRep.QueryDto<Res_CarData, CarDataView>().ToList();
- if (carDada.Count == 0)
- {
- return Ok(JsonView(false, "暂无数据!"));
- }
- carDada=carDada.OrderByDescending(s=>s.CreateTime).ToList();
- return Ok(JsonView(true, "查询成功", carDada));
- }
- else
- {
- return Ok(JsonView(false, "请传入PortType参数!1:Web,2:Android,3:IOS"));
- }
-
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
-
-
- }
- /// <summary>
- /// 车公司信息添加
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> AddCarData(AddCarDataDto dto)
- {
- try
- {
- if (dto.UnitArea == "")
- {
- return Ok(JsonView(false, "请检查单位区域是否填写!"));
- }
- if (dto.UnitName == "")
- {
- return Ok(JsonView(false, "请检查单位名称是否填写!"));
- }
- if (dto.Contact == "")
- {
- return Ok(JsonView(false, "请检查单位联系人是否填写!"));
- }
- if (dto.ContactTel == "")
- {
- return Ok(JsonView(false, "请检查联系方式是否填写正确!"));
- }
- Res_CarData _CarData = _mapper.Map<Res_CarData>(dto);
- int id = await _carDataRep.AddAsyncReturnId(_CarData);
- if (id == 0)
- {
- return Ok(JsonView(false, "添加失败!"));
- }
- return Ok(JsonView(true, "添加成功", new { Id = id }));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 车公司信息修改
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> UpCarData(UpCarDataDto dto)
- {
- try
- {
- if (dto.UnitArea == "")
- {
- return Ok(JsonView(false, "请检查单位区域是否填写!"));
- }
- if (dto.UnitName == "")
- {
- return Ok(JsonView(false, "请检查单位名称是否填写!"));
- }
- if (dto.Contact == "")
- {
- return Ok(JsonView(false, "请检查单位联系人是否填写!"));
- }
- if (dto.ContactTel == "")
- {
- return Ok(JsonView(false, "请检查联系方式是否填写正确!"));
- }
- bool res = await _carDataRep.UpdateAsync(a => a.Id == dto.Id, a => new Res_CarData
- {
- UnitArea = dto.UnitArea,
- UnitName = dto.UnitName,
- Address = dto.Address,
- Contact = dto.Contact,
- ContactTel = dto.ContactTel,
- ContactEmail = dto.ContactEmail,
- ContactFax = dto.ContactFax,
- CarDes = dto.CarDes,
- CarPicPaths = dto.CarPicPaths,
- OtherInfo = dto.OtherInfo,
- Score = dto.Score,
- QualificationScore = dto.QualificationScore,
- CarAgeScore = dto.CarAgeScore,
- CleanImgScore = dto.CleanImgScore,
- SmellScore = dto.SmellScore,
- WaterPaperScore = dto.WaterPaperScore,
- HardwareScore = dto.HardwareScore,
- TimeScore = dto.TimeScore,
- SafetyScore = dto.SafetyScore,
- DrivingAgeScore = dto.DrivingAgeScore,
- Remark = dto.Remark,
- });
- if (!res) { return Ok(JsonView(false, "修改失败!")); }
- return Ok(JsonView(true, "修改成功"));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- /// <summary>
- /// 车公司信息修改
- /// </summary>
- /// <returns></returns>
- [HttpPost]
- [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
- public async Task<IActionResult> DelCarData(DelCarDataDto dto)
- {
- try
- {
- bool res = await _carDataRep.SoftDeleteByIdAsync<Res_CarData>(dto.Id.ToString(), dto.DeleteUserId);
- if (!res) { return Ok(JsonView(false, "删除失败!")); }
- return Ok(JsonView(true, "删除成功"));
- }
- catch (Exception ex)
- {
- return Ok(JsonView(false, "程序错误!"));
- throw;
- }
- }
- #endregion
- }
- }
|