| | |
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.system.CustomerContent;
|
| | | import com.yeshi.fanli.entity.system.CustomerName;
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | public interface SystemClientParamsMapper {
|
| | | import com.yeshi.fanli.dao.BaseMapper;
|
| | | import com.yeshi.fanli.entity.system.SystemClientParams;
|
| | |
|
| | | Integer getCount(int type);
|
| | | public interface SystemClientParamsMapper extends BaseMapper<SystemClientParams> {
|
| | |
|
| | | CustomerName getHelpCenter(long id);
|
| | | List<SystemClientParams> listBySystemIdAndMinVersion(@Param("systemId") Long systemId,
|
| | | @Param("minVersion") Integer version);
|
| | |
|
| | | Integer getProblemCount(long id);
|
| | | SystemClientParams getSystemClientParamsBySystemAndKey(@Param("systemId") Long systemId, @Param("key") String key);
|
| | |
|
| | | List<CustomerContent> contactCustomerService(String title);
|
| | | List<SystemClientParams> listQuery(@Param("start") long start, @Param("count") int count,
|
| | | @Param("systemId") Long systemId, @Param("key") String key);
|
| | |
|
| | | long countQuery(@Param("systemId") Long systemId, @Param("key") String key);
|
| | | }
|