DeliveryLicenceMapper.java 586 Bytes
Newer Older
412743165@qq.com committed
1 2 3 4 5 6
package com.jarvis.dataCenter.mapper.warehouse;

import com.baomidou.dynamic.datasource.annotation.DS;
import com.jarvis.dataCenter.constants.DbConstants;
import com.jarvis.dataCenter.entity.warehouse.DeliveryLicenceEntity;
import com.jarvis.lib.common.mybatisplus.mapper.IBaseMapper;
7
import org.apache.ibatis.annotations.Select;
412743165@qq.com committed
8 9 10

/**
 * <p>
11
 *
412743165@qq.com committed
12 13 14 15 16 17 18 19
 * </p>
 *
 * @author jinzhaopo
 * @since 2019-10-30
 */
@DS(DbConstants.WAREHOUSE)
public interface DeliveryLicenceMapper extends IBaseMapper<DeliveryLicenceEntity> {

20 21 22
    @Select("select max(id) from delivery_licence")
    Long maxId();

412743165@qq.com committed
23
}