Commit 613de8fd by 吕明尚

Merge branch 'dev' into test

parents a0878418 0af9a2db
...@@ -17,6 +17,7 @@ import share.common.core.controller.BaseController; ...@@ -17,6 +17,7 @@ import share.common.core.controller.BaseController;
import share.common.core.domain.AjaxResult; import share.common.core.domain.AjaxResult;
import share.common.enums.BusinessType; import share.common.enums.BusinessType;
import share.common.utils.SecurityUtils; import share.common.utils.SecurityUtils;
import share.system.domain.DeviceDto;
import share.system.mqtt.MqttGatewayComponent; import share.system.mqtt.MqttGatewayComponent;
import share.system.domain.Device; import share.system.domain.Device;
import share.system.domain.vo.DeviceParamVo; import share.system.domain.vo.DeviceParamVo;
...@@ -51,7 +52,7 @@ public class DeviceController extends BaseController ...@@ -51,7 +52,7 @@ public class DeviceController extends BaseController
*/ */
@PreAuthorize("@ss.hasPermi('system:device:list')") @PreAuthorize("@ss.hasPermi('system:device:list')")
@GetMapping("/list") @GetMapping("/list")
public TableDataInfo list(Device device) public TableDataInfo list(DeviceDto device)
{ {
startPage(); startPage();
List<Device> list = deviceService.selectDeviceList(device); List<Device> list = deviceService.selectDeviceList(device);
......
...@@ -18,6 +18,7 @@ import share.common.core.domain.AjaxResult; ...@@ -18,6 +18,7 @@ import share.common.core.domain.AjaxResult;
import share.common.enums.BusinessType; import share.common.enums.BusinessType;
import share.common.utils.SecurityUtils; import share.common.utils.SecurityUtils;
import share.system.domain.DeviceGateway; import share.system.domain.DeviceGateway;
import share.system.domain.DeviceGatewayDto;
import share.system.service.DeviceGatewayService; import share.system.service.DeviceGatewayService;
import share.common.utils.poi.ExcelUtil; import share.common.utils.poi.ExcelUtil;
import share.common.core.page.TableDataInfo; import share.common.core.page.TableDataInfo;
...@@ -43,10 +44,10 @@ public class DeviceGatewayController extends BaseController ...@@ -43,10 +44,10 @@ public class DeviceGatewayController extends BaseController
*/ */
@PreAuthorize("@ss.hasPermi('system:gateway:list')") @PreAuthorize("@ss.hasPermi('system:gateway:list')")
@GetMapping("/list") @GetMapping("/list")
public TableDataInfo list(DeviceGateway deviceGateway) public TableDataInfo list(DeviceGatewayDto deviceGatewayDto)
{ {
startPage(); startPage();
List<DeviceGateway> list = deviceGatewayService.selectDeviceGatewayList(deviceGateway); List<DeviceGateway> list = deviceGatewayService.selectDeviceGatewayList(deviceGatewayDto);
return getDataTable(list); return getDataTable(list);
} }
...@@ -56,10 +57,10 @@ public class DeviceGatewayController extends BaseController ...@@ -56,10 +57,10 @@ public class DeviceGatewayController extends BaseController
@PreAuthorize("@ss.hasPermi('system:gateway:export')") @PreAuthorize("@ss.hasPermi('system:gateway:export')")
@Log(title = "设备网关信息", businessType = BusinessType.EXPORT) @Log(title = "设备网关信息", businessType = BusinessType.EXPORT)
@PostMapping("/export") @PostMapping("/export")
public void export(HttpServletResponse response, DeviceGateway deviceGateway) public void export(HttpServletResponse response, DeviceGatewayDto deviceGateway)
{ {
List<DeviceGateway> list = deviceGatewayService.selectDeviceGatewayList(deviceGateway); List<DeviceGateway> list = deviceGatewayService.selectDeviceGatewayList(deviceGateway);
ExcelUtil<DeviceGateway> util = new ExcelUtil<DeviceGateway>(DeviceGateway.class); ExcelUtil<DeviceGateway> util = new ExcelUtil<>(DeviceGateway.class);
util.exportExcel(response, list, "设备网关信息数据"); util.exportExcel(response, list, "设备网关信息数据");
} }
......
...@@ -17,6 +17,7 @@ import share.common.core.controller.BaseController; ...@@ -17,6 +17,7 @@ import share.common.core.controller.BaseController;
import share.common.core.domain.AjaxResult; import share.common.core.domain.AjaxResult;
import share.common.enums.BusinessType; import share.common.enums.BusinessType;
import share.system.domain.DeviceLog; import share.system.domain.DeviceLog;
import share.system.domain.DeviceLogDto;
import share.system.service.DeviceLogService; import share.system.service.DeviceLogService;
import share.common.utils.poi.ExcelUtil; import share.common.utils.poi.ExcelUtil;
import share.common.core.page.TableDataInfo; import share.common.core.page.TableDataInfo;
...@@ -39,7 +40,7 @@ public class DeviceLogController extends BaseController ...@@ -39,7 +40,7 @@ public class DeviceLogController extends BaseController
*/ */
@PreAuthorize("@ss.hasPermi('system:log:list')") @PreAuthorize("@ss.hasPermi('system:log:list')")
@GetMapping("/list") @GetMapping("/list")
public TableDataInfo list(DeviceLog deviceLog) public TableDataInfo list(DeviceLogDto deviceLog)
{ {
startPage(); startPage();
List<DeviceLog> list = deviceLogService.selectDeviceLogList(deviceLog); List<DeviceLog> list = deviceLogService.selectDeviceLogList(deviceLog);
......
...@@ -17,6 +17,7 @@ import share.common.core.controller.BaseController; ...@@ -17,6 +17,7 @@ import share.common.core.controller.BaseController;
import share.common.core.domain.AjaxResult; import share.common.core.domain.AjaxResult;
import share.common.enums.BusinessType; import share.common.enums.BusinessType;
import share.system.domain.DeviceStatusLog; import share.system.domain.DeviceStatusLog;
import share.system.domain.DeviceStatusLogDto;
import share.system.service.DeviceStatusLogService; import share.system.service.DeviceStatusLogService;
import share.common.utils.poi.ExcelUtil; import share.common.utils.poi.ExcelUtil;
import share.common.core.page.TableDataInfo; import share.common.core.page.TableDataInfo;
...@@ -39,7 +40,7 @@ public class DeviceStatusLogController extends BaseController ...@@ -39,7 +40,7 @@ public class DeviceStatusLogController extends BaseController
*/ */
@PreAuthorize("@ss.hasPermi('system:statusLog:list')") @PreAuthorize("@ss.hasPermi('system:statusLog:list')")
@GetMapping("/list") @GetMapping("/list")
public TableDataInfo list(DeviceStatusLog deviceStatusLog) public TableDataInfo list(DeviceStatusLogDto deviceStatusLog)
{ {
startPage(); startPage();
List<DeviceStatusLog> list = deviceStatusLogService.selectDeviceStatusLogList(deviceStatusLog); List<DeviceStatusLog> list = deviceStatusLogService.selectDeviceStatusLogList(deviceStatusLog);
......
...@@ -17,6 +17,7 @@ import share.common.core.controller.BaseController; ...@@ -17,6 +17,7 @@ import share.common.core.controller.BaseController;
import share.common.core.domain.AjaxResult; import share.common.core.domain.AjaxResult;
import share.common.enums.BusinessType; import share.common.enums.BusinessType;
import share.system.domain.SaobeiApiLog; import share.system.domain.SaobeiApiLog;
import share.system.domain.SaobeiApiLogDto;
import share.system.service.SaobeiApiLogService; import share.system.service.SaobeiApiLogService;
import share.common.utils.poi.ExcelUtil; import share.common.utils.poi.ExcelUtil;
import share.common.core.page.TableDataInfo; import share.common.core.page.TableDataInfo;
...@@ -39,10 +40,10 @@ public class SaobeiApiLogController extends BaseController ...@@ -39,10 +40,10 @@ public class SaobeiApiLogController extends BaseController
*/ */
@PreAuthorize("@ss.hasPermi('system:saobeilog:list')") @PreAuthorize("@ss.hasPermi('system:saobeilog:list')")
@GetMapping("/list") @GetMapping("/list")
public TableDataInfo list(SaobeiApiLog saobeiApiLog) public TableDataInfo list(SaobeiApiLogDto saobeiApiLogDto)
{ {
startPage(); startPage();
List<SaobeiApiLog> list = saobeiApiLogService.selectSaobeiApiLogList(saobeiApiLog); List<SaobeiApiLogDto> list = saobeiApiLogService.selectSaobeiApiLogList(saobeiApiLogDto);
return getDataTable(list); return getDataTable(list);
} }
...@@ -52,10 +53,10 @@ public class SaobeiApiLogController extends BaseController ...@@ -52,10 +53,10 @@ public class SaobeiApiLogController extends BaseController
@PreAuthorize("@ss.hasPermi('system:saobeilog:export')") @PreAuthorize("@ss.hasPermi('system:saobeilog:export')")
@Log(title = "扫呗接口调用日志", businessType = BusinessType.EXPORT) @Log(title = "扫呗接口调用日志", businessType = BusinessType.EXPORT)
@PostMapping("/export") @PostMapping("/export")
public void export(HttpServletResponse response, SaobeiApiLog saobeiApiLog) public void export(HttpServletResponse response, SaobeiApiLogDto saobeiApiLog)
{ {
List<SaobeiApiLog> list = saobeiApiLogService.selectSaobeiApiLogList(saobeiApiLog); List<SaobeiApiLogDto> list = saobeiApiLogService.selectSaobeiApiLogList(saobeiApiLog);
ExcelUtil<SaobeiApiLog> util = new ExcelUtil<SaobeiApiLog>(SaobeiApiLog.class); ExcelUtil<SaobeiApiLogDto> util = new ExcelUtil<>(SaobeiApiLogDto.class);
util.exportExcel(response, list, "扫呗接口调用日志数据"); util.exportExcel(response, list, "扫呗接口调用日志数据");
} }
......
...@@ -106,6 +106,7 @@ public class Device extends BaseEntity ...@@ -106,6 +106,7 @@ public class Device extends BaseEntity
.append("gatewayId", getGatewayId()) .append("gatewayId", getGatewayId())
.append("voltage", getVoltage()) .append("voltage", getVoltage())
.append("signalValue", getSignalValue()) .append("signalValue", getSignalValue())
.append("roomId", getRoomId())
.toString(); .toString();
} }
} }
package share.system.domain;
import lombok.Data;
/**
* @author lichenghu
* @date 2024/1/25
*/
@Data
public class DeviceDto extends Device {
/**
* 门店ID
*/
private Long storeId;
}
package share.system.domain;
import lombok.Data;
/**
* @author lichenghu
* @date 2024/1/25
*/
@Data
public class DeviceGatewayDto extends DeviceGateway {
/**
* 门店id
*/
private String storeId;
}
package share.system.domain;
import lombok.Data;
/**
* @author lichenghu
* @date 2024/1/25
*/
@Data
public class DeviceLogDto extends DeviceLog {
/**
* 门店id
*/
private Long storeId;
/**
* 房间id
*/
private Long roomId;
}
package share.system.domain;
import lombok.Data;
/**
* @author lichenghu
* @date 2024/1/25
*/
@Data
public class DeviceStatusLogDto extends DeviceStatusLog {
/**
* 门店id
*/
private Long storeId;
}
...@@ -32,6 +32,10 @@ public class SRoom extends BaseEntity ...@@ -32,6 +32,10 @@ public class SRoom extends BaseEntity
@Excel(name = "门店ID") @Excel(name = "门店ID")
private Long storeId; private Long storeId;
/** 排序值 */
@Excel(name = "排序值")
private String sort;
/** 房间名称 */ /** 房间名称 */
@Excel(name = "房间名称") @Excel(name = "房间名称")
private String name; private String name;
......
package share.system.domain;
import lombok.Data;
/**
* @author lichenghu
* @date 2024/1/25
*/
@Data
public class SaobeiApiLogDto extends SaobeiApiLog {
/**
* 门店id
*/
private Long storeId;
/**
* 房间id
*/
private Long roomId;
}
...@@ -21,6 +21,14 @@ public class SmsLog extends BaseEntity ...@@ -21,6 +21,14 @@ public class SmsLog extends BaseEntity
/** 主键 */ /** 主键 */
private Long id; private Long id;
/** 门店id */
@Excel(name = "门店id")
private Long storeId;
/** 房间id */
@Excel(name = "房间id")
private Long roomId;
/** 发送手机号码 */ /** 发送手机号码 */
@Excel(name = "发送手机号码") @Excel(name = "发送手机号码")
private String phone; private String phone;
...@@ -54,6 +62,8 @@ public class SmsLog extends BaseEntity ...@@ -54,6 +62,8 @@ public class SmsLog extends BaseEntity
public String toString() { public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId()) .append("id", getId())
.append("storeId", getStoreId())
.append("roomId", getRoomId())
.append("phone", getPhone()) .append("phone", getPhone())
.append("templateId", getTemplateId()) .append("templateId", getTemplateId())
.append("signature", getSignature()) .append("signature", getSignature())
......
...@@ -34,6 +34,10 @@ public class SRoomVo extends BaseEntity ...@@ -34,6 +34,10 @@ public class SRoomVo extends BaseEntity
@ApiModelProperty(value = "门店ID") @ApiModelProperty(value = "门店ID")
private Long storeId; private Long storeId;
/** 排序值 */
@Excel(name = "排序值")
private String sort;
/** 门店名称 */ /** 门店名称 */
@ApiModelProperty(value = "门店名称") @ApiModelProperty(value = "门店名称")
private String storeName; private String storeName;
...@@ -140,6 +144,7 @@ public class SRoomVo extends BaseEntity ...@@ -140,6 +144,7 @@ public class SRoomVo extends BaseEntity
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId()) .append("id", getId())
.append("storeId", getStoreId()) .append("storeId", getStoreId())
.append("sort", getSort())
.append("storeName", getStoreName()) .append("storeName", getStoreName())
.append("name", getName()) .append("name", getName())
.append("roomType", getRoomType()) .append("roomType", getRoomType())
......
...@@ -3,6 +3,7 @@ package share.system.mapper; ...@@ -3,6 +3,7 @@ package share.system.mapper;
import java.util.List; import java.util.List;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import share.system.domain.SaobeiApiLog; import share.system.domain.SaobeiApiLog;
import share.system.domain.SaobeiApiLogDto;
/** /**
* 扫呗接口调用日志Mapper接口 * 扫呗接口调用日志Mapper接口
...@@ -26,7 +27,7 @@ public interface SaobeiApiLogMapper extends BaseMapper<SaobeiApiLog> ...@@ -26,7 +27,7 @@ public interface SaobeiApiLogMapper extends BaseMapper<SaobeiApiLog>
* @param saobeiApiLog 扫呗接口调用日志 * @param saobeiApiLog 扫呗接口调用日志
* @return 扫呗接口调用日志集合 * @return 扫呗接口调用日志集合
*/ */
public List<SaobeiApiLog> selectSaobeiApiLogList(SaobeiApiLog saobeiApiLog); public List<SaobeiApiLogDto> selectSaobeiApiLogList(SaobeiApiLog saobeiApiLog);
/** /**
* 新增扫呗接口调用日志 * 新增扫呗接口调用日志
......
...@@ -3,6 +3,7 @@ package share.system.service; ...@@ -3,6 +3,7 @@ package share.system.service;
import java.util.List; import java.util.List;
import com.baomidou.mybatisplus.extension.service.IService; import com.baomidou.mybatisplus.extension.service.IService;
import share.system.domain.SaobeiApiLog; import share.system.domain.SaobeiApiLog;
import share.system.domain.SaobeiApiLogDto;
/** /**
* 扫呗接口调用日志Service接口 * 扫呗接口调用日志Service接口
...@@ -26,7 +27,7 @@ public interface SaobeiApiLogService extends IService<SaobeiApiLog> ...@@ -26,7 +27,7 @@ public interface SaobeiApiLogService extends IService<SaobeiApiLog>
* @param saobeiApiLog 扫呗接口调用日志 * @param saobeiApiLog 扫呗接口调用日志
* @return 扫呗接口调用日志集合 * @return 扫呗接口调用日志集合
*/ */
public List<SaobeiApiLog> selectSaobeiApiLogList(SaobeiApiLog saobeiApiLog); public List<SaobeiApiLogDto> selectSaobeiApiLogList(SaobeiApiLog saobeiApiLog);
/** /**
* 新增扫呗接口调用日志 * 新增扫呗接口调用日志
......
...@@ -405,6 +405,7 @@ public class SConsumerCouponServiceImpl extends ServiceImpl<SConsumerCouponMappe ...@@ -405,6 +405,7 @@ public class SConsumerCouponServiceImpl extends ServiceImpl<SConsumerCouponMappe
newSConsumerCoupon.setStartDate(sCoupon.getStartDate()); newSConsumerCoupon.setStartDate(sCoupon.getStartDate());
newSConsumerCoupon.setEndDate(sCoupon.getEndDate()); newSConsumerCoupon.setEndDate(sCoupon.getEndDate());
newSConsumerCoupon.setRemark(sCoupon.getRemark()); newSConsumerCoupon.setRemark(sCoupon.getRemark());
newSConsumerCoupon.setCreateTime(new Date());
int insert = baseMapper.insert(newSConsumerCoupon); int insert = baseMapper.insert(newSConsumerCoupon);
if (insert > 0) { if (insert > 0) {
//优惠券数量减一 //优惠券数量减一
......
...@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; ...@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import share.common.utils.DateUtils; import share.common.utils.DateUtils;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import share.system.domain.SaobeiApiLogDto;
import share.system.mapper.SaobeiApiLogMapper; import share.system.mapper.SaobeiApiLogMapper;
import share.system.domain.SaobeiApiLog; import share.system.domain.SaobeiApiLog;
import share.system.service.SaobeiApiLogService; import share.system.service.SaobeiApiLogService;
...@@ -40,7 +41,7 @@ public class SaobeiApiLogServiceImpl extends ServiceImpl<SaobeiApiLogMapper, Sao ...@@ -40,7 +41,7 @@ public class SaobeiApiLogServiceImpl extends ServiceImpl<SaobeiApiLogMapper, Sao
* @return 扫呗接口调用日志 * @return 扫呗接口调用日志
*/ */
@Override @Override
public List<SaobeiApiLog> selectSaobeiApiLogList(SaobeiApiLog saobeiApiLog) public List<SaobeiApiLogDto> selectSaobeiApiLogList(SaobeiApiLog saobeiApiLog)
{ {
return saobeiApiLogMapper.selectSaobeiApiLogList(saobeiApiLog); return saobeiApiLogMapper.selectSaobeiApiLogList(saobeiApiLog);
} }
......
...@@ -71,11 +71,13 @@ public class SmsServiceImpl implements SmsService { ...@@ -71,11 +71,13 @@ public class SmsServiceImpl implements SmsService {
* 短信发送 * 短信发送
* *
* @param phone * @param phone
* @param storeId
* @param roomId
* @return * @return
*/ */
private boolean sendSms(String phone, Integer tag, String content) { private boolean sendSms(String phone, Integer tag, String content, Long storeId, Long roomId) {
try { try {
JSONObject jsonObject = sendOneSms(phone, content, String.valueOf(tag)); JSONObject jsonObject = sendOneSms(phone, content, String.valueOf(tag), storeId, roomId);
boolean isSendSuccess = Objects.nonNull(jsonObject); boolean isSendSuccess = Objects.nonNull(jsonObject);
if (tag == SmsTypeEnum.SMS_CODE_TEMP.getCode()) { if (tag == SmsTypeEnum.SMS_CODE_TEMP.getCode()) {
if (!isSendSuccess) { if (!isSendSuccess) {
...@@ -95,7 +97,7 @@ public class SmsServiceImpl implements SmsService { ...@@ -95,7 +97,7 @@ public class SmsServiceImpl implements SmsService {
public boolean sendSmsCode(String phone) { public boolean sendSmsCode(String phone) {
// redisUtil.set(sConsumerService.getValidateCodeRedisKey(phone), "123456", Long.valueOf(Constants.CONFIG_KEY_SMS_CODE_EXPIRE), TimeUnit.MINUTES); // redisUtil.set(sConsumerService.getValidateCodeRedisKey(phone), "123456", Long.valueOf(Constants.CONFIG_KEY_SMS_CODE_EXPIRE), TimeUnit.MINUTES);
String content = getSmsContent(phone, SmsTypeEnum.SMS_CODE_TEMP.getCode()); String content = getSmsContent(phone, SmsTypeEnum.SMS_CODE_TEMP.getCode());
return sendSms(phone, SmsTypeEnum.SMS_CODE_TEMP.getCode(), content); return sendSms(phone, SmsTypeEnum.SMS_CODE_TEMP.getCode(), content, null, null);
} }
@Override @Override
...@@ -104,7 +106,7 @@ public class SmsServiceImpl implements SmsService { ...@@ -104,7 +106,7 @@ public class SmsServiceImpl implements SmsService {
SysConfig config = sysConfigMapper.checkConfigKeyUnique(SmsTypeEnum.SMS_CLEAN_RECORDS_TEMP.getValue()); SysConfig config = sysConfigMapper.checkConfigKeyUnique(SmsTypeEnum.SMS_CLEAN_RECORDS_TEMP.getValue());
if (config != null) { if (config != null) {
String content = MessageFormat.format(config.getConfigValue(), store.getName(), room.getName(), store.getAddress()); String content = MessageFormat.format(config.getConfigValue(), store.getName(), room.getName(), store.getAddress());
return sendSms(phone, SmsTypeEnum.SMS_CLEAN_RECORDS_TEMP.getCode(), content); return sendSms(phone, SmsTypeEnum.SMS_CLEAN_RECORDS_TEMP.getCode(), content, store.getId(), room.getId());
} else { } else {
return Boolean.FALSE; return Boolean.FALSE;
} }
...@@ -116,7 +118,7 @@ public class SmsServiceImpl implements SmsService { ...@@ -116,7 +118,7 @@ public class SmsServiceImpl implements SmsService {
SysConfig config = sysConfigMapper.checkConfigKeyUnique(SmsTypeEnum.SMS_CLEAN_RECORDS_TEMP_15.getValue()); SysConfig config = sysConfigMapper.checkConfigKeyUnique(SmsTypeEnum.SMS_CLEAN_RECORDS_TEMP_15.getValue());
if (config != null) { if (config != null) {
String content = MessageFormat.format(config.getConfigValue(), store.getName(), room.getName(), store.getAddress()); String content = MessageFormat.format(config.getConfigValue(), store.getName(), room.getName(), store.getAddress());
return sendSms(phone, SmsTypeEnum.SMS_CLEAN_RECORDS_TEMP_15.getCode(), content); return sendSms(phone, SmsTypeEnum.SMS_CLEAN_RECORDS_TEMP_15.getCode(), content, store.getId(), room.getId());
} else { } else {
return Boolean.FALSE; return Boolean.FALSE;
} }
...@@ -128,7 +130,7 @@ public class SmsServiceImpl implements SmsService { ...@@ -128,7 +130,7 @@ public class SmsServiceImpl implements SmsService {
SysConfig config = sysConfigMapper.checkConfigKeyUnique(SmsTypeEnum.SMS_ORDER_START_TEMP.getValue()); SysConfig config = sysConfigMapper.checkConfigKeyUnique(SmsTypeEnum.SMS_ORDER_START_TEMP.getValue());
if (config != null) { if (config != null) {
String content = MessageFormat.format(config.getConfigValue(), room.getName(), store.getAddress()); String content = MessageFormat.format(config.getConfigValue(), room.getName(), store.getAddress());
return sendSms(phone, SmsTypeEnum.SMS_ORDER_START_TEMP.getCode(), content); return sendSms(phone, SmsTypeEnum.SMS_ORDER_START_TEMP.getCode(), content, store.getId(), room.getId());
} else { } else {
return Boolean.FALSE; return Boolean.FALSE;
} }
...@@ -140,7 +142,7 @@ public class SmsServiceImpl implements SmsService { ...@@ -140,7 +142,7 @@ public class SmsServiceImpl implements SmsService {
SysConfig config = sysConfigMapper.checkConfigKeyUnique(SmsTypeEnum.SMS_ORDER_END_TEMP.getValue()); SysConfig config = sysConfigMapper.checkConfigKeyUnique(SmsTypeEnum.SMS_ORDER_END_TEMP.getValue());
if (config != null) { if (config != null) {
String content = MessageFormat.format(config.getConfigValue(), room.getName()); String content = MessageFormat.format(config.getConfigValue(), room.getName());
return sendSms(phone, SmsTypeEnum.SMS_ORDER_END_TEMP.getCode(), content); return sendSms(phone, SmsTypeEnum.SMS_ORDER_END_TEMP.getCode(), content, store.getId(), room.getId());
} else { } else {
return Boolean.FALSE; return Boolean.FALSE;
} }
...@@ -152,7 +154,7 @@ public class SmsServiceImpl implements SmsService { ...@@ -152,7 +154,7 @@ public class SmsServiceImpl implements SmsService {
SysConfig config = sysConfigMapper.checkConfigKeyUnique(SmsTypeEnum.SMS_CLEAN_RECORDS_STOP_TEMP.getValue()); SysConfig config = sysConfigMapper.checkConfigKeyUnique(SmsTypeEnum.SMS_CLEAN_RECORDS_STOP_TEMP.getValue());
if (config != null) { if (config != null) {
String content = MessageFormat.format(config.getConfigValue(), store.getName(), room.getName(), store.getAddress()); String content = MessageFormat.format(config.getConfigValue(), store.getName(), room.getName(), store.getAddress());
return sendSms(phone, SmsTypeEnum.SMS_CLEAN_RECORDS_STOP_TEMP.getCode(), content); return sendSms(phone, SmsTypeEnum.SMS_CLEAN_RECORDS_STOP_TEMP.getCode(), content, store.getId(), room.getId());
} else { } else {
return Boolean.FALSE; return Boolean.FALSE;
} }
...@@ -165,7 +167,7 @@ public class SmsServiceImpl implements SmsService { ...@@ -165,7 +167,7 @@ public class SmsServiceImpl implements SmsService {
if (config != null) { if (config != null) {
String content = MessageFormat.format(config.getConfigValue(), store.getName(), room.getName(), String content = MessageFormat.format(config.getConfigValue(), store.getName(), room.getName(),
DeviceStatusEnum.getNameStr(deviceStatusLog.getStatus())); DeviceStatusEnum.getNameStr(deviceStatusLog.getStatus()));
return sendSms(phone, SmsTypeEnum.SMS_DEVICE_ABNORMAL_TEMP.getCode(), content); return sendSms(phone, SmsTypeEnum.SMS_DEVICE_ABNORMAL_TEMP.getCode(), content, store.getId(), room.getId());
} else { } else {
return Boolean.FALSE; return Boolean.FALSE;
} }
...@@ -235,11 +237,14 @@ public class SmsServiceImpl implements SmsService { ...@@ -235,11 +237,14 @@ public class SmsServiceImpl implements SmsService {
/** /**
* 单独发送 * 单独发送
* @param phone 手机号 *
* @param phone 手机号
* @param content 发送内容 * @param content 发送内容
* @param storeId 门店id
* @param roomId 房间id
* @return * @return
*/ */
private JSONObject sendOneSms(String phone, String content, String smsType) { private JSONObject sendOneSms(String phone, String content, String smsType, Long storeId, Long roomId) {
// 发送内容添加短信签名 // 发送内容添加短信签名
String smsContent = StrUtil.concat(true, signature, content); String smsContent = StrUtil.concat(true, signature, content);
JSONObject param = JSONUtil.createObj(); JSONObject param = JSONUtil.createObj();
...@@ -257,6 +262,8 @@ public class SmsServiceImpl implements SmsService { ...@@ -257,6 +262,8 @@ public class SmsServiceImpl implements SmsService {
smsLog.setContent(content); smsLog.setContent(content);
smsLog.setSignature(signature); smsLog.setSignature(signature);
smsLog.setSmsType(smsType); smsLog.setSmsType(smsType);
smsLog.setStoreId(storeId);
smsLog.setRoomId(roomId);
try { try {
JSONObject jsonObject = smsUtil.postFrom(url, param); JSONObject jsonObject = smsUtil.postFrom(url, param);
smsLog.setResultParam(JSONUtil.toJsonStr(jsonObject)); smsLog.setResultParam(JSONUtil.toJsonStr(jsonObject));
......
...@@ -36,21 +36,45 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -36,21 +36,45 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</sql> </sql>
<select id="selectDeviceGatewayList" parameterType="DeviceGateway" resultMap="DeviceGatewayResult"> <select id="selectDeviceGatewayList" parameterType="DeviceGateway" resultMap="DeviceGatewayResult">
<include refid="selectDeviceGatewayVo"/> select
<where> t1.id,
<if test="devName != null and devName != ''"> and dev_name like concat('%', #{devName}, '%')</if> t1.dev_name,
<if test="devMac != null and devMac != ''"> and dev_mac = #{devMac}</if> t1.dev_mac,
<if test="devId != null and devId != ''"> and dev_id = #{devId}</if> t1.dev_id,
<if test="devPsw != null and devPsw != ''"> and dev_psw = #{devPsw}</if> t1.dev_psw,
<if test="devVer != null and devVer != ''"> and dev_ver = #{devVer}</if> t1.dev_ver,
<if test="devType != null and devType != ''"> and dev_type = #{devType}</if> t1.dev_type,
<if test="group != null and group != ''"> and `group` = #{group}</if> t1.`group`,
<if test="status != null and status != ''"> and status = #{status}</if> t1.status,
<if test="mqttIp != null and mqttIp != ''"> and mqtt_iP = #{mqttIp}</if> t1.mqtt_iP,
<if test="mqttPort != null and mqttPort != ''"> and mqtt_port = #{mqttPort}</if> t1.mqtt_port,
<if test="mqttUser != null and mqttUser != ''"> and mqtt_user = #{mqttUser}</if> t1.mqtt_user,
<if test="mqttPaswd != null and mqttPaswd != ''"> and mqtt_paswd = #{mqttPaswd}</if> t1.mqtt_paswd,
<if test="devPosition != null and devPosition != ''"> and dev_position = #{devPosition}</if> t1.create_by,
t1.create_time,
t1.update_by,
t1.update_time,
t1.remark,
t1.dev_position,
t1.last_report_date,
t1.last_report_content
from s_device_gateway t1
left join s_store t2 on t1.group = t2.device_group
<where>
<if test="devName != null and devName != ''">and t1.dev_name like concat('%', #{devName}, '%')</if>
<if test="devMac != null and devMac != ''">and t1.dev_mac = #{devMac}</if>
<if test="devId != null and devId != ''">and t1.dev_id = #{devId}</if>
<if test="devPsw != null and devPsw != ''">and t1.dev_psw = #{devPsw}</if>
<if test="devVer != null and devVer != ''">and t1.dev_ver = #{devVer}</if>
<if test="devType != null and devType != ''">and t1.dev_type = #{devType}</if>
<if test="group != null and group != ''">and t1.group = #{group}</if>
<if test="status != null and status != ''">and t1.status = #{status}</if>
<if test="mqttIp != null and mqttIp != ''">and t1.mqtt_iP = #{mqttIp}</if>
<if test="mqttPort != null and mqttPort != ''">and t1.mqtt_port = #{mqttPort}</if>
<if test="mqttUser != null and mqttUser != ''">and t1.mqtt_user = #{mqttUser}</if>
<if test="mqttPaswd != null and mqttPaswd != ''">and t1.mqtt_paswd = #{mqttPaswd}</if>
<if test="devPosition != null and devPosition != ''">and t1.dev_position = #{devPosition}</if>
<if test="storeId != null">and t2.id = #{storeId}</if>
</where> </where>
</select> </select>
......
...@@ -33,19 +33,38 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -33,19 +33,38 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</sql> </sql>
<select id="selectDeviceLogList" parameterType="DeviceLog" resultMap="DeviceLogResult"> <select id="selectDeviceLogList" parameterType="DeviceLog" resultMap="DeviceLogResult">
<include refid="selectDeviceLogVo"/> select
<where> t1.id,
<if test="devMac != null and devMac != ''"> and s1.dev_mac = #{devMac}</if> t1.dev_mac,
<if test="devId != null and devId != ''"> and s1.dev_id = #{devId}</if> t1.dev_id,
<if test="seq != null and seq != ''"> and s1.seq = #{seq}</if> t1.seq,
<if test="mqttType != null and mqttType != ''"> and s1.mqtt_type = #{mqttType}</if> t1.mqtt_type,
<if test="mqttDescribe != null and mqttDescribe != ''"> and s1.mqtt_describe = #{mqttDescribe}</if> t1.mqtt_describe,
<if test="payload != null and payload != ''"> and s1.payload = #{payload}</if> t1.payload,
<if test="topic != null and topic != ''"> and s1.topic = #{topic}</if> t1.topic,
<if test="storeName != null and storeName != ''"> and s4.name like concat('%', #{storeName}, '%')</if> t1.create_by,
<if test="roomName != null and roomName != ''"> and s3.name like concat('%', #{roomName}, '%')</if> t1.create_time,
t1.update_by,
t1.update_time,
t1.remark,
t1.`result`,
t1.description
from s_device_log t1
join s_device t2 on t1.dev_id = t2.dev_id
join s_room t3 on t2.room_id = t3.id
join s_store t4 on t3.store_id = t4.id
<where>
<if test="devMac != null and devMac != ''">and t1.dev_mac = #{devMac}</if>
<if test="devId != null and devId != ''">and t1.dev_id = #{devId}</if>
<if test="seq != null and seq != ''">and t1.seq = #{seq}</if>
<if test="mqttType != null and mqttType != ''">and t1.mqtt_type = #{mqttType}</if>
<if test="mqttDescribe != null and mqttDescribe != ''">and t1.mqtt_describe = #{mqttDescribe}</if>
<if test="payload != null and payload != ''">and t1.payload = #{payload}</if>
<if test="topic != null and topic != ''">and t1.topic = #{topic}</if>
<if test="storeId != null">and t4.id = #{storeId}</if>
<if test="roomId != null">and t3.id = #{roomId}</if>
</where> </where>
order by s1.create_time desc order by create_time desc
</select> </select>
<select id="selectDeviceLogById" parameterType="Long" resultMap="DeviceLogResult"> <select id="selectDeviceLogById" parameterType="Long" resultMap="DeviceLogResult">
......
...@@ -35,23 +35,48 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -35,23 +35,48 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</sql> </sql>
<select id="selectDeviceList" parameterType="Device" resultMap="DeviceResult"> <select id="selectDeviceList" parameterType="Device" resultMap="DeviceResult">
<include refid="selectDeviceVo"/> select
<where> t1.id,
<if test="devName != null and devName != ''"> and dev_name like concat('%', #{devName}, '%')</if> t1.dev_name,
<if test="devMac != null and devMac != ''"> and dev_mac = #{devMac}</if> t1.dev_mac,
<if test="devId != null and devId != ''"> and dev_id = #{devId}</if> t1.dev_id,
<if test="devPsw != null and devPsw != ''"> and dev_psw = #{devPsw}</if> t1.dev_psw,
<if test="devVer != null and devVer != ''"> and dev_ver = #{devVer}</if> t1.dev_ver,
<if test="devType != null and devType != ''"> and dev_type = #{devType}</if> t1.dev_type,
<if test="projtId != null and projtId != ''"> and projt_id = #{projtId}</if> t1.projt_id,
<if test="projtPsw != null and projtPsw != ''"> and projt_psw = #{projtPsw}</if> t1.projt_psw,
<if test="group != null and group != ''"> and `group` = #{group}</if> t1.`group`,
<if test="status != null and status != ''"> and status = #{status}</if> t1.status,
<if test="devPosition != null and devPosition != ''"> and dev_position = #{devPosition}</if> t1.create_by,
<if test="gatewayId != null and gatewayId != ''"> and gateway_id = #{gatewayId}</if> t1.create_time,
<if test="voltage != null and voltage != ''"> and voltage = #{voltage}</if> t1.update_by,
<if test="signalValue != null and signalValue != ''"> and signal_value = #{signalValue}</if> t1.update_time,
<if test="roomId != null"> and room_id = #{roomId}</if> t1.remark,
t1.dev_position,
t1.gateway_id,
t1.voltage,
t1.signal_value,
t1.room_id
from s_device t1
left join s_room t2 on t1.room_id = t2.id
left join s_store t3 on t2.store_id = t3.id
<where>
<if test="devName != null and devName != ''">and t1.dev_name like concat('%', #{devName}, '%')</if>
<if test="devMac != null and devMac != ''">and t1.dev_mac = #{devMac}</if>
<if test="devId != null and devId != ''">and t1.dev_id = #{devId}</if>
<if test="devPsw != null and devPsw != ''">and t1.dev_psw = #{devPsw}</if>
<if test="devVer != null and devVer != ''">and t1.dev_ver = #{devVer}</if>
<if test="devType != null and devType != ''">and t1.dev_type = #{devType}</if>
<if test="projtId != null and projtId != ''">and t1.projt_id = #{projtId}</if>
<if test="projtPsw != null and projtPsw != ''">and t1.projt_psw = #{projtPsw}</if>
<if test="group != null and group != ''">and t1.group = #{group}</if>
<if test="status != null and status != ''">and t1.status = #{status}</if>
<if test="devPosition != null and devPosition != ''">and t1.dev_position = #{devPosition}</if>
<if test="gatewayId != null and gatewayId != ''">and t1.gateway_id = #{gatewayId}</if>
<if test="voltage != null and voltage != ''">and t1.voltage = #{voltage}</if>
<if test="signalValue != null and signalValue != ''">and t1.signal_value = #{signalValue}</if>
<if test="roomId != null">and t1.room_id = #{roomId}</if>
<if test="storeId != null">and t3.id = #{storeId}</if>
</where> </where>
</select> </select>
......
...@@ -32,21 +32,38 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -32,21 +32,38 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</sql> </sql>
<select id="selectDeviceStatusLogList" parameterType="DeviceStatusLog" resultMap="DeviceStatusLogResult"> <select id="selectDeviceStatusLogList" parameterType="DeviceStatusLog" resultMap="DeviceStatusLogResult">
<include refid="selectDeviceStatusLogVo"/> select
<where> t1.id,
<if test="devId != null and devId != ''"> and s1.dev_id = #{devId}</if> t1.dev_id,
<if test="devMac != null and devMac != ''"> and s1.dev_mac = #{devMac}</if> t1.dev_mac,
<if test="isAbnormal != null "> and s1.is_abnormal = #{isAbnormal}</if> t1.is_abnormal,
<if test="status != null and status != ''"> and s1.status = #{status}</if> t1.status,
<if test="roomId != null "> and s1.room_id = #{roomId}</if> t1.room_id,
<if test="voltage != null and voltage != ''"> and s1.voltage = #{voltage}</if> t1.voltage,
<if test="signalValue != null and signalValue != ''"> and s1.signal_value = #{signalValue}</if> t1.signal_value,
<if test="operateLogId != null "> and s1.operate_log_id = #{operateLogId}</if> t1.create_time,
<if test="isSendSms != null "> and s1.is_send_sms = #{isSendSms}</if> t1.update_time,
<if test="storeName != null and storeName != ''"> and s4.name like concat('%', #{storeName}, '%')</if> t1.remark,
<if test="roomName != null and roomName != ''"> and s3.name like concat('%', #{roomName}, '%')</if> t1.operate_log_id,
t1.is_send_sms,
t1.previous_status
from s_device_status_log t1
join s_room t2 on t1.room_id = t2.id
join s_store t3 on t2.store_id = t3.id
<where>
<if test="devId != null and devId != ''">and t1.dev_id = #{devId}</if>
<if test="devMac != null and devMac != ''">and t1.dev_mac = #{devMac}</if>
<if test="isAbnormal != null ">and t1.is_abnormal = #{isAbnormal}</if>
<if test="status != null and status != ''">and t1.status = #{status}</if>
<if test="roomId != null ">and t1.room_id = #{roomId}</if>
<if test="voltage != null and voltage != ''">and t1.voltage = #{voltage}</if>
<if test="signalValue != null and signalValue != ''">and t1.signal_value = #{signalValue}</if>
<if test="operateLogId != null ">and t1.operate_log_id = #{operateLogId}</if>
<if test="isSendSms != null ">and t1.is_send_sms = #{isSendSms}</if>
<if test="roomId != null ">and t2.id = #{roomId}</if>
<if test="storeId != null ">and t3.id = #{storeId}</if>
</where> </where>
order by s1.create_time desc order by create_time desc
</select> </select>
<select id="selectDeviceStatusLogById" parameterType="Long" resultMap="DeviceStatusLogResult"> <select id="selectDeviceStatusLogById" parameterType="Long" resultMap="DeviceStatusLogResult">
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
<resultMap type="SRoom" id="SRoomResult"> <resultMap type="SRoom" id="SRoomResult">
<result property="id" column="id" /> <result property="id" column="id" />
<result property="storeId" column="store_id" /> <result property="storeId" column="store_id" />
<result property="sort" column="sort" />
<result property="name" column="name" /> <result property="name" column="name" />
<result property="roomType" column="room_type" /> <result property="roomType" column="room_type" />
<result property="images" column="images" /> <result property="images" column="images" />
...@@ -69,6 +70,7 @@ ...@@ -69,6 +70,7 @@
<if test="params1 != null and params1 != ''"> and params1 = #{params1}</if> <if test="params1 != null and params1 != ''"> and params1 = #{params1}</if>
<if test="params2 != null and params2 != ''"> and params2 = #{params2}</if> <if test="params2 != null and params2 != ''"> and params2 = #{params2}</if>
</where> </where>
order by sort desc
</select> </select>
<select id="selectSRoomById" parameterType="Long" resultMap="SRoomResult"> <select id="selectSRoomById" parameterType="Long" resultMap="SRoomResult">
...@@ -79,6 +81,7 @@ ...@@ -79,6 +81,7 @@
<insert id="insertSRoom" parameterType="SRoom" useGeneratedKeys="true" keyProperty="id"> <insert id="insertSRoom" parameterType="SRoom" useGeneratedKeys="true" keyProperty="id">
insert into s_room insert into s_room
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
<if test="sort != null">sort,</if>
<if test="storeId != null">store_id,</if> <if test="storeId != null">store_id,</if>
<if test="name != null">name,</if> <if test="name != null">name,</if>
<if test="roomType != null">room_type,</if> <if test="roomType != null">room_type,</if>
...@@ -100,6 +103,7 @@ ...@@ -100,6 +103,7 @@
<if test="remark != null">remark,</if> <if test="remark != null">remark,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="sort != null">#{sort},</if>
<if test="storeId != null">#{storeId},</if> <if test="storeId != null">#{storeId},</if>
<if test="name != null">#{name},</if> <if test="name != null">#{name},</if>
<if test="roomType != null">#{roomType},</if> <if test="roomType != null">#{roomType},</if>
...@@ -125,6 +129,7 @@ ...@@ -125,6 +129,7 @@
<update id="updateSRoom" parameterType="SRoom"> <update id="updateSRoom" parameterType="SRoom">
update s_room update s_room
<trim prefix="SET" suffixOverrides=","> <trim prefix="SET" suffixOverrides=",">
<if test="sort != null">sort = #{sort},</if>
<if test="storeId != null">store_id = #{storeId},</if> <if test="storeId != null">store_id = #{storeId},</if>
<if test="name != null">name = #{name},</if> <if test="name != null">name = #{name},</if>
<if test="roomType != null">room_type = #{roomType},</if> <if test="roomType != null">room_type = #{roomType},</if>
......
...@@ -31,23 +31,50 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -31,23 +31,50 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
select id, pay_ver, pay_type, service_id, merchant_no, terminal_id, terminal_ip, terminal_trace, terminal_time, out_trade_no, request_params, response_params, result, result_msg, create_time, create_by, update_by, update_time, remark, flag from s_saobei_api_log select id, pay_ver, pay_type, service_id, merchant_no, terminal_id, terminal_ip, terminal_trace, terminal_time, out_trade_no, request_params, response_params, result, result_msg, create_time, create_by, update_by, update_time, remark, flag from s_saobei_api_log
</sql> </sql>
<select id="selectSaobeiApiLogList" parameterType="SaobeiApiLog" resultMap="SaobeiApiLogResult"> <select id="selectSaobeiApiLogList" parameterType="SaobeiApiLog" resultType="SaobeiApiLogDto">
<include refid="selectSaobeiApiLogVo"/> select
<where> t1.id,
<if test="payVer != null and payVer != ''"> and pay_ver = #{payVer}</if> t3.store_id,
<if test="payType != null and payType != ''"> and pay_type = #{payType}</if> t3.room_id,
<if test="serviceId != null and serviceId != ''"> and service_id = #{serviceId}</if> t1.pay_ver,
<if test="merchantNo != null and merchantNo != ''"> and merchant_no = #{merchantNo}</if> t1.pay_type,
<if test="terminalId != null and terminalId != ''"> and terminal_id = #{terminalId}</if> t1.service_id,
<if test="terminalIp != null and terminalIp != ''"> and terminal_ip = #{terminalIp}</if> t1.merchant_no,
<if test="terminalTrace != null and terminalTrace != ''"> and terminal_trace = #{terminalTrace}</if> t1.terminal_id,
<if test="terminalTime != null and terminalTime != ''"> and terminal_time = #{terminalTime}</if> t1.terminal_ip,
<if test="outTradeNo != null and outTradeNo != ''"> and out_trade_no = #{outTradeNo}</if> t1.terminal_trace,
<if test="requestParams != null and requestParams != ''"> and request_params = #{requestParams}</if> t1.terminal_time,
<if test="responseParams != null and responseParams != ''"> and response_params = #{responseParams}</if> t1.out_trade_no,
<if test="result != null and result != ''"> and result = #{result}</if> t1.request_params,
<if test="resultMsg != null and resultMsg != ''"> and result_msg = #{resultMsg}</if> t1.response_params,
<if test="flag != null and flag != ''"> and flag = #{flag}</if> t1.result,
t1.result_msg,
t1.create_time,
t1.create_by,
t1.update_by,
t1.update_time,
t1.remark,
t1.flag
from s_saobei_api_log t1
join s_wechat_pay_info t2 on t1.terminal_trace = t2.out_trade_no
join s_order t3 on t2.out_trade_no = t3.out_trade_no
<where>
<if test="storeId != null">and t3.store_id = #{storeId}</if>
<if test="roomId != null">and t3.room_id = #{roomId}</if>
<if test="payVer != null and payVer != ''">and t1.pay_ver = #{payVer}</if>
<if test="payType != null and payType != ''">and t1.pay_type = #{payType}</if>
<if test="serviceId != null and serviceId != ''">and t1.service_id = #{serviceId}</if>
<if test="merchantNo != null and merchantNo != ''">and t1.merchant_no = #{merchantNo}</if>
<if test="terminalId != null and terminalId != ''">and t1.terminal_id = #{terminalId}</if>
<if test="terminalIp != null and terminalIp != ''">and t1.terminal_ip = #{terminalIp}</if>
<if test="terminalTrace != null and terminalTrace != ''">and t1.terminal_trace = #{terminalTrace}</if>
<if test="terminalTime != null and terminalTime != ''">and t1.terminal_time = #{terminalTime}</if>
<if test="outTradeNo != null and outTradeNo != ''">and t1.out_trade_no = #{outTradeNo}</if>
<if test="requestParams != null and requestParams != ''">and t1.request_params = #{requestParams}</if>
<if test="responseParams != null and responseParams != ''">and t1.response_params = #{responseParams}</if>
<if test="result != null and result != ''">and t1.result = #{result}</if>
<if test="resultMsg != null and resultMsg != ''">and t1.result_msg = #{resultMsg}</if>
<if test="flag != null and flag != ''">and t1.flag = #{flag}</if>
</where> </where>
order by create_time desc order by create_time desc
</select> </select>
......
...@@ -6,6 +6,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -6,6 +6,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<resultMap type="SmsLog" id="SmsLogResult"> <resultMap type="SmsLog" id="SmsLogResult">
<result property="id" column="id" /> <result property="id" column="id" />
<result property="storeId" column="store_id" />
<result property="roomId" column="room_id" />
<result property="phone" column="phone" /> <result property="phone" column="phone" />
<result property="templateId" column="template_id" /> <result property="templateId" column="template_id" />
<result property="signature" column="signature" /> <result property="signature" column="signature" />
...@@ -21,13 +23,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -21,13 +23,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap> </resultMap>
<sql id="selectSmsLogVo"> <sql id="selectSmsLogVo">
select id, phone, template_id, signature, content, sms_type, create_by, create_time, update_by, update_time, remark, result, result_param from s_sms_log select id, store_id, room_id, phone, template_id, signature, content, sms_type, create_by, create_time, update_by, update_time, remark, result, result_param from s_sms_log
</sql> </sql>
<select id="selectSmsLogList" parameterType="SmsLog" resultMap="SmsLogResult"> <select id="selectSmsLogList" parameterType="SmsLog" resultMap="SmsLogResult">
<include refid="selectSmsLogVo"/> <include refid="selectSmsLogVo"/>
<where> <where>
<if test="phone != null and phone != ''"> and phone = #{phone}</if> <if test="phone != null and phone != ''"> and phone = #{phone}</if>
<if test="storeId != null"> and store_id = #{storeId}</if>
<if test="roomId != null"> and room_id = #{roomId}</if>
<if test="templateId != null and templateId != ''"> and template_id = #{templateId}</if> <if test="templateId != null and templateId != ''"> and template_id = #{templateId}</if>
<if test="signature != null and signature != ''"> and signature = #{signature}</if> <if test="signature != null and signature != ''"> and signature = #{signature}</if>
<if test="content != null and content != ''"> and content = #{content}</if> <if test="content != null and content != ''"> and content = #{content}</if>
...@@ -46,6 +50,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -46,6 +50,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<insert id="insertSmsLog" parameterType="SmsLog" useGeneratedKeys="true" keyProperty="id"> <insert id="insertSmsLog" parameterType="SmsLog" useGeneratedKeys="true" keyProperty="id">
insert into s_sms_log insert into s_sms_log
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
<if test="storeId != null">store_id,</if>
<if test="roomId != null">room_id,</if>
<if test="phone != null">phone,</if> <if test="phone != null">phone,</if>
<if test="templateId != null">template_id,</if> <if test="templateId != null">template_id,</if>
<if test="signature != null">signature,</if> <if test="signature != null">signature,</if>
...@@ -60,6 +66,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -60,6 +66,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="resultParam != null">result_param,</if> <if test="resultParam != null">result_param,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="storeId != null">#{storeId},</if>
<if test="roomId != null">#{roomId},</if>
<if test="phone != null">#{phone},</if> <if test="phone != null">#{phone},</if>
<if test="templateId != null">#{templateId},</if> <if test="templateId != null">#{templateId},</if>
<if test="signature != null">#{signature},</if> <if test="signature != null">#{signature},</if>
...@@ -78,6 +86,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -78,6 +86,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<update id="updateSmsLog" parameterType="SmsLog"> <update id="updateSmsLog" parameterType="SmsLog">
update s_sms_log update s_sms_log
<trim prefix="SET" suffixOverrides=","> <trim prefix="SET" suffixOverrides=",">
<if test="storeId != null">store_id = #{storeId},</if>
<if test="roomId != null">room_id = #{roomId},</if>
<if test="phone != null">phone = #{phone},</if> <if test="phone != null">phone = #{phone},</if>
<if test="templateId != null">template_id = #{templateId},</if> <if test="templateId != null">template_id = #{templateId},</if>
<if test="signature != null">signature = #{signature},</if> <if test="signature != null">signature = #{signature},</if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment