y_ys79
2024-01-05 e5840972b6b17ec03bfc1069a9cacfe0cef189c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.qianwen.mdc.mapper;
 
import org.apache.ibatis.annotations.Param;
 
import com.qianwen.mdc.domain.MdcMachineAccount;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
import java.util.List;
 
public interface MdcMachineAccountMapper extends BaseMapper<MdcMachineAccount> {
    /**
     * 查询列表
     */
    List<MdcMachineAccount> selectInfo(MdcMachineAccount mdcMachineAccount);
 
    List<String> selectSameTypes(@Param("typesId") Integer typesId, @Param("machineName") String machineName);
 
    /**
     * 根据machineId,选出最后一条记录
     * @param machineId
     * @return
     */
    List<MdcMachineAccount> lastByMachineId(Integer machineId);
}