package com.nq.service;
|
|
import com.nq.common.ServerResponse;
|
import com.nq.pojo.SitePayType;
|
|
public interface ISitePayTypeService {
|
ServerResponse add(String payTypeName);
|
|
ServerResponse update(SitePayType payType);
|
|
ServerResponse listByType(String payTypeName, int pageNum, int pageSize);
|
|
ServerResponse del(Integer id);
|
|
ServerResponse listAll();
|
}
|