提交 1901923f authored 作者: renjianyu's avatar renjianyu

--no commit message

上级 dce0c6e7
package com.zrqx.member.bg.member.mapper;
import com.zrqx.core.mapper.BaseMapper;
import com.zrqx.core.model.member.MemberPriaze;
public interface MemberPriazeMapper extends BaseMapper<MemberPriaze>{
}
package com.zrqx.member.bg.member.service;
import com.zrqx.core.model.member.MemberPriaze;
import com.zrqx.core.service.BaseService;
public interface MemberPriazeService extends BaseService<MemberPriaze, Integer> {
}
package com.zrqx.member.bg.member.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.zrqx.core.mapper.BaseMapper;
import com.zrqx.core.model.member.MemberPriaze;
import com.zrqx.core.service.BaseServiceImpl;
import com.zrqx.member.bg.member.mapper.MemberPriazeMapper;
@Service
public class MemberPriazeServiceImpl extends BaseServiceImpl<MemberPriaze,Integer> implements MemberPriazeService {
@Autowired
private MemberPriazeMapper mapper;
@Override
public BaseMapper<MemberPriaze> getMapper() {
return mapper;
}
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论