Commit 1c8b3d6c authored by wangquan  wangquan's avatar wangquan wangquan
Browse files

22

parent 440ddd1b
package com.zxr.demos.mapper;
import com.zxr.demos.common.entity.BaseServiceType;
import org.springframework.stereotype.Repository;
import tk.mybatis.mapper.common.Mapper;
@Repository
public interface BaseServiceTypeMapper extends Mapper<BaseServiceType> {
}
package com.zxr.demos.mapper;
import com.zxr.demos.common.entity.BaseTask;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface BaseTaskMapper extends tk.mybatis.mapper.common.Mapper<BaseTask> {
List<BaseTask> getTaskListByUserPhone(@Param("userPhone") String userPhone, @Param("tenantId")String tenantId);
}
package com.zxr.demos.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.zxr.demos.common.entity.RbDeliveryFailRetry;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@Mapper
@Repository
public interface RbDeliveryFailRetryMapper extends BaseMapper<RbDeliveryFailRetry> {
}
package com.zxr.demos.mapper;
import com.zxr.demos.common.entity.KunKun;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import java.util.List;
@Mapper
public interface TestMapper {
@Select("SELECT * from `department`")
List<KunKun> iKuns();
}
package com.zxr.demos.service;
public interface myService {
void myInsert();
}
Supports Markdown
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