12 changed files with 347 additions and 68 deletions
@ -1,30 +0,0 @@ |
|||
package com.ccsens.form.persist.mapper; |
|||
|
|||
import com.ccsens.form.bean.po.FormModuleConfigOption; |
|||
import com.ccsens.form.bean.po.FormModuleConfigOptionExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface FormModuleConfigOptionMapper { |
|||
long countByExample(FormModuleConfigOptionExample example); |
|||
|
|||
int deleteByExample(FormModuleConfigOptionExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(FormModuleConfigOption record); |
|||
|
|||
int insertSelective(FormModuleConfigOption record); |
|||
|
|||
List<FormModuleConfigOption> selectByExample(FormModuleConfigOptionExample example); |
|||
|
|||
FormModuleConfigOption selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") FormModuleConfigOption record, @Param("example") FormModuleConfigOptionExample example); |
|||
|
|||
int updateByExample(@Param("record") FormModuleConfigOption record, @Param("example") FormModuleConfigOptionExample example); |
|||
|
|||
int updateByPrimaryKeySelective(FormModuleConfigOption record); |
|||
|
|||
int updateByPrimaryKey(FormModuleConfigOption record); |
|||
} |
@ -0,0 +1,30 @@ |
|||
package com.ccsens.form.persist.mapper; |
|||
|
|||
import com.ccsens.form.bean.po.FormModuleOption; |
|||
import com.ccsens.form.bean.po.FormModuleOptionExample; |
|||
import java.util.List; |
|||
import org.apache.ibatis.annotations.Param; |
|||
|
|||
public interface FormModuleOptionMapper { |
|||
long countByExample(FormModuleOptionExample example); |
|||
|
|||
int deleteByExample(FormModuleOptionExample example); |
|||
|
|||
int deleteByPrimaryKey(Long id); |
|||
|
|||
int insert(FormModuleOption record); |
|||
|
|||
int insertSelective(FormModuleOption record); |
|||
|
|||
List<FormModuleOption> selectByExample(FormModuleOptionExample example); |
|||
|
|||
FormModuleOption selectByPrimaryKey(Long id); |
|||
|
|||
int updateByExampleSelective(@Param("record") FormModuleOption record, @Param("example") FormModuleOptionExample example); |
|||
|
|||
int updateByExample(@Param("record") FormModuleOption record, @Param("example") FormModuleOptionExample example); |
|||
|
|||
int updateByPrimaryKeySelective(FormModuleOption record); |
|||
|
|||
int updateByPrimaryKey(FormModuleOption record); |
|||
} |
Loading…
Reference in new issue