Files
scrq-hd/.svn/pristine/98/98c903f9a03fceab16986c53cb8b75e60c9e63f6.svn-base
2025-07-03 10:34:04 +08:00

15 lines
436 B
Plaintext

package com.cmeim.template.service;
import com.cmeim.template.po.TpFormBind;
import com.cmeim.common.core.web.page.PageVo;
import org.springframework.data.domain.Sort;
import java.util.List;
public interface TpFormBindService {
void save(TpFormBind tpFormBind);
void delete(TpFormBind tpFormBind);
PageVo list(PageVo pv, TpFormBind tpFormBind, Sort.Order[] orders);
List<TpFormBind> listAll(TpFormBind tpFormBind);
}