package com.nq.service; import com.nq.common.ServerResponse; import com.nq.pojo.PayChnnel; public interface IPayChnnelServices { ServerResponse addPayChnnel(PayChnnel payChnnel); ServerResponse deletePayChnnel(Integer id); ServerResponse queryPayChnnel(Integer chnnelType); ServerResponse queryAdminPayChnnel(Integer chnnelType); ServerResponse updatePayChnnel(PayChnnel payChnnel); }