electripper/electripper-system/src/main/java/com/ruoyi/system/service/IEtMsgLogService.java
18650502300 46dac8bc57 1.还车短信、短信日志
2.收费方式增加运营区和运营商选择
2024-07-24 15:32:01 +08:00

62 lines
1.2 KiB
Java

package com.ruoyi.system.service;
import java.util.List;
import com.ruoyi.system.domain.EtMsgLog;
/**
* 短信日志Service接口
*
* @author qiuzhenzhen
* @date 2024-07-24
*/
public interface IEtMsgLogService
{
/**
* 查询短信日志
*
* @param id 短信日志主键
* @return 短信日志
*/
public EtMsgLog selectEtMsgLogById(Long id);
/**
* 查询短信日志列表
*
* @param etMsgLog 短信日志
* @return 短信日志集合
*/
public List<EtMsgLog> selectEtMsgLogList(EtMsgLog etMsgLog);
/**
* 新增短信日志
*
* @param etMsgLog 短信日志
* @return 结果
*/
public int insertEtMsgLog(EtMsgLog etMsgLog);
/**
* 修改短信日志
*
* @param etMsgLog 短信日志
* @return 结果
*/
public int updateEtMsgLog(EtMsgLog etMsgLog);
/**
* 批量删除短信日志
*
* @param ids 需要删除的短信日志主键集合
* @return 结果
*/
public int deleteEtMsgLogByIds(Long[] ids);
/**
* 删除短信日志信息
*
* @param id 短信日志主键
* @return 结果
*/
public int deleteEtMsgLogById(Long id);
}