| | |
| | | package com.yeshi.fanli.dao.mybatis.taobao; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.yeshi.fanli.entity.taobao.TaoBaoUnionConfig; |
| | | |
| | | public interface TaoBaoUnionConfigMapper { |
| | | |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | int insert(TaoBaoUnionConfig record); |
| | | |
| | | int insertSelective(TaoBaoUnionConfig record); |
| | | |
| | | TaoBaoUnionConfig selectByPrimaryKey(Long id); |
| | | |
| | | List<TaoBaoUnionConfig> selectByType(int type); |
| | | |
| | | TaoBaoUnionConfig selectByAppId(String appId); |
| | | |
| | | int updateByPrimaryKeySelective(TaoBaoUnionConfig record); |
| | | |
| | | int updateByPrimaryKey(TaoBaoUnionConfig record); |
| | | package com.yeshi.fanli.dao.mybatis.taobao;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoUnionConfig;
|
| | |
|
| | | public interface TaoBaoUnionConfigMapper {
|
| | |
|
| | | int deleteByPrimaryKey(Long id);
|
| | |
|
| | | int insert(TaoBaoUnionConfig record);
|
| | |
|
| | | int insertSelective(TaoBaoUnionConfig record);
|
| | |
|
| | | TaoBaoUnionConfig selectByPrimaryKey(Long id);
|
| | |
|
| | | List<TaoBaoUnionConfig> selectByType(int type);
|
| | |
|
| | | TaoBaoUnionConfig selectByAppId(String appId);
|
| | |
|
| | | int updateByPrimaryKeySelective(TaoBaoUnionConfig record);
|
| | |
|
| | | int updateByPrimaryKey(TaoBaoUnionConfig record);
|
| | | //根据appkey查询
|
| | | TaoBaoUnionConfig selectByAppKey(String appKey);
|
| | | |
| | | |
| | | } |