commit | author | age
|
a18bfa
|
1 |
package cn.autoform.web.mapper.formsetting; |
Z |
2 |
|
|
3 |
import org.apache.ibatis.annotations.Mapper; |
|
4 |
|
|
5 |
import cn.autoform.db.entity.CustomButtonEntity; |
|
6 |
import cn.autoform.db.entity.FormsettingEntity; |
|
7 |
import org.apache.ibatis.annotations.Param; |
|
8 |
|
|
9 |
@Mapper |
|
10 |
public interface FormsettingMapper { |
|
11 |
|
|
12 |
FormsettingEntity getFormsettingInfo(CustomButtonEntity entity); |
|
13 |
|
|
14 |
int createFormsetting(FormsettingEntity entity); |
|
15 |
|
|
16 |
int updateFormsetting(FormsettingEntity entity); |
|
17 |
// |
|
18 |
// int copyFormsetting(@Param("sourceFormId") String sourceFormId, @Param("sourceTenantId") String sourceTenantId |
|
19 |
// , @Param("targetFormId") String targetFormId, @Param("targetTenantId") String targetTenantId); |
|
20 |
} |