123456789101112131415161718192021222324 |
- package com.bosshand.virgo.api.dao;
- import com.bosshand.virgo.api.model.Clause;
- import org.apache.ibatis.annotations.Mapper;
- import java.util.List;
- @Mapper
- public interface ClauseDao {
- int insert (Clause clause);
- int batchInsert(List<Clause> list);
- int update(Clause clause);
- int delete(long id);
- List<Clause> getList(Clause clause);
- Clause get(long id);
- int deleteContractId(long contractId);
- }
|