zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cn.autoform.web.mapper.publish;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import cn.autoform.db.entity.FormBaseEntity;
 
@Mapper
public interface PublishMapper {
    
    // 表单发布信息取得
    List<FormBaseEntity> getPublishInfo(@Param("tenantID") String tenantID, @Param("formID") String formID);
    
    // 更新发布信息
    int updatePublishInfo(FormBaseEntity formBaseEntity);
    
}