15 lines
436 B
Plaintext
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);
|
|
}
|