123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- using AutoMapper;
- using OASystem.Domain;
- using OASystem.Domain.Dtos.Groups;
- using OASystem.Domain.Dtos.Resource;
- using OASystem.Domain.Entities.Resource;
- using OASystem.Domain.ViewModels.Resource;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Infrastructure.Repositories.Resource
- {
- public class HotelDataRepository:BaseRepository<Res_HotelData,HotelDataView>
- {
- private readonly IMapper _mapper;
- public HotelDataRepository(SqlSugarClient sqlSugar, IMapper mapper) : base(sqlSugar)
- {
- _mapper= mapper;
- }
- public async Task<Result> OperationHotelData(OperationHotelDto dto)
- {
- Result result = new Result() { Code = -2, Msg = "未知错误" };
- try
- {
- if (dto.Status == 1)//添加
- {
- string selectSql = string.Format(@"select * from Res_HotelData where Name='{0}' and IsDel='{1}'"
- , dto.Name,0);
- var HotelData = await _sqlSugar.SqlQueryable<Res_HotelData>(selectSql).FirstAsync();//查询是否存在
- if (HotelData != null)
- {
- return result = new Result() { Code = -1, Msg = "该信息已存在,请勿重复添加!" };
- }
- else//不存在,可添加
- {
- Res_HotelData _HotelDataDto = _mapper.Map<Res_HotelData>(dto);
- int id = await AddAsyncReturnId(_HotelDataDto);
- if (id == 0)
- {
- return result = new Result() { Code = -1, Msg = "添加失败!" };
- }
- return result = new Result() { Code = 0, Msg = "添加成功!", Data = new { Id = id } };
- }
- }
- else if (dto.Status == 2)//修改
- {
- bool res = await UpdateAsync(a => a.Id == dto.Id, a => new Res_HotelData
- {
- City = dto.City,
- Name = dto.Name,
- Level = dto.Level,
- Address = dto.Address,
- Tel = dto.Tel,
- Fax = dto.Fax,
- Contact = dto.Contact,
- ContactPhone = dto.ContactPhone,
- OtherInformation = dto.OtherInformation,
- Remark = dto.Remark,
- });
- if (!res)
- {
- return result = new Result() { Code = -1, Msg = "修改失败!" };
- }
- return result = new Result() { Code = 0, Msg = "修改成功!" };
- }
- else
- {
- return result = new Result() { Code = -1, Msg = "请传入Status参数,1添加 2修改!" };
- }
- }
- catch (Exception ex)
- {
- return result = new Result() { Code = -2, Msg = "程序错误!" };
- }
- return result;
- }
- public async Task<Result> QueryHotelData(QueryHotelDataDto dto)
- {
- Result result = new Result() { Code = -2, Msg = "未知错误" };
- try
- {
- string sqlWhere = string.Empty;
- if (!string.IsNullOrWhiteSpace(dto.Name))
- {
- sqlWhere += string.Format(@" And Name like '%{0}%'", dto.Name);
- }
- if (!string.IsNullOrWhiteSpace(dto.City) && dto.City != "全部")
- {
- sqlWhere += string.Format(@" And City like '%{0}%'", dto.City);
- }
- if (!string.IsNullOrWhiteSpace(dto.Contact))
- {
- sqlWhere += string.Format(@" And Contact like '%{0}%'", dto.Contact);
- }
- if (!string.IsNullOrWhiteSpace(dto.ContactPhone))
- {
- sqlWhere += string.Format(@" And ContactPhone like '%{0}%'", dto.ContactPhone);
- }
- sqlWhere += string.Format(@" And IsDel={0}", 0);
- if (!string.IsNullOrEmpty(sqlWhere.Trim()))
- {
- Regex r = new Regex("And");
- sqlWhere = r.Replace(sqlWhere, "Where", 1);
- }
- if (dto.PortType == 1)
- {
- string sql = string.Format(@"select * from Res_HotelData {0}", sqlWhere);
- List<Res_HotelData> HotelDataData = await _sqlSugar.SqlQueryable<Res_HotelData>(sql).ToListAsync();
- if (HotelDataData.Count == 0)
- {
- return result = new Result() { Code = -1, Msg = "暂无数据" };
- }
- HotelDataData = HotelDataData.OrderByDescending(x => x.CreateTime).ToList();
- if (dto.PageSize == 0 && dto.PageIndex == 0)
- {
- return result = new Result()
- {
- Code = 0,
- Msg = "查询成功",
- Data = HotelDataData,
- };
- }
- else
- {
- int count = HotelDataData.Count;
- float totalPage = (float)count / dto.PageSize;//总页数
- if (totalPage == 0) totalPage = 1;
- else totalPage = (int)Math.Ceiling((double)totalPage);
- List<Res_HotelData> _HotelData = new List<Res_HotelData>();
- for (int i = 0; i < dto.PageSize; i++)
- {
- var RowIndex = i + (dto.PageIndex - 1) * dto.PageSize;
- if (RowIndex < HotelDataData.Count)
- {
- _HotelData.Add(HotelDataData[RowIndex]);
- }
- else
- {
- break;
- }
- }
- return result = new Result()
- {
- Code = 0,
- Msg = "查询成功",
- Data = new { pageCount = count, totalPage = (int)totalPage, pageIndex = dto.PageIndex, pageSize = dto.PageSize, pageSource = _HotelData },
- };
- }
- }
- else if (dto.PortType == 2)
- {
- string sql = string.Format(@"select * from Res_HotelData {0}", sqlWhere);
- List<Res_HotelData> HotelDataData = await _sqlSugar.SqlQueryable<Res_HotelData>(sql).ToListAsync();
- if (HotelDataData.Count == 0)
- {
- return result = new Result() { Code = -1, Msg = "暂无数据" };
- }
- HotelDataData = HotelDataData.OrderByDescending(x => x.CreateTime).ToList();
- if (dto.PageSize == 0 && dto.PageIndex == 0)
- {
- return result = new Result()
- {
- Code = 0,
- Msg = "查询成功",
- Data = HotelDataData,
- };
- }
- else
- {
- int count = HotelDataData.Count;
- float totalPage = (float)count / dto.PageSize;//总页数
- if (totalPage == 0) totalPage = 1;
- else totalPage = (int)Math.Ceiling((double)totalPage);
- List<Res_HotelData> _HotelData = new List<Res_HotelData>();
- for (int i = 0; i < dto.PageSize; i++)
- {
- var RowIndex = i + (dto.PageIndex - 1) * dto.PageSize;
- if (RowIndex < HotelDataData.Count)
- {
- _HotelData.Add(HotelDataData[RowIndex]);
- }
- else
- {
- break;
- }
- }
- return result = new Result()
- {
- Code = 0,
- Msg = "查询成功",
- Data = new { pageCount = count, totalPage = (int)totalPage, pageIndex = dto.PageIndex, pageSize = dto.PageSize, pageSource = _HotelData },
- };
- }
- }
- else
- {
- return result = new Result() { Code = -2, Msg = "请传入PortType参数!1:Web,2:Android,3:IOS" };
- }
- }
- catch (Exception)
- {
- return result;
- throw;
- }
- }
- }
- }
|