| | |
| | | package com.ks.lucky.mapper; |
| | | |
| | | import com.ks.lib.common.dao.BaseMapper; |
| | | import com.ks.lucky.pojo.DO.LuckySponsors; |
| | | import com.ks.lucky.query.LuckySponsorQuery; |
| | | |
| | | public interface LuckySponsorsMapper { |
| | | int deleteByPrimaryKey(Long id); |
| | | import java.util.List; |
| | | |
| | | int insert(LuckySponsors record); |
| | | public interface LuckySponsorsMapper extends BaseMapper<LuckySponsors> { |
| | | |
| | | int insertSelective(LuckySponsors record); |
| | | |
| | | LuckySponsors selectByPrimaryKey(Long id); |
| | | List<LuckySponsors> list(LuckySponsorQuery query); |
| | | |
| | | int updateByPrimaryKeySelective(LuckySponsors record); |
| | | long count(LuckySponsorQuery query); |
| | | |
| | | int updateByPrimaryKey(LuckySponsors record); |
| | | |
| | | List<LuckySponsors> listDetail(List<Long> ids); |
| | | } |