接口 FormConfigInfoMapper
- 所有超级接口:
com.baomidou.mybatisplus.core.mapper.BaseMapper<FormConfigInfo>,com.mbap.mybatis.ty.service.IBaseMapper<FormConfigInfo>,com.baomidou.mybatisplus.core.mapper.Mapper<FormConfigInfo>
public interface FormConfigInfoMapper
extends com.mbap.mybatis.ty.service.IBaseMapper<FormConfigInfo>
表单配置信息 Mapper 接口
- 从以下版本开始:
- 2022-08-04
- 作者:
- xinxin
-
方法概要
从接口继承的方法 com.baomidou.mybatisplus.core.mapper.BaseMapper
delete, deleteBatchIds, deleteById, deleteById, deleteByMap, exists, insert, selectBatchIds, selectById, selectByMap, selectCount, selectList, selectMaps, selectMapsPage, selectObjs, selectOne, selectPage, update, updateById从接口继承的方法 com.mbap.mybatis.ty.service.IBaseMapper
execNoResultSql, findBySql, findBySql2Entity, findBySql2Map, getCountBySql, getUniqueResultBySql, pageBySql2Entity, pageBySql2Map, query, SelectBySql
-
方法详细资料
-
getFormConfigInfoByBuildEntityId
@Select("select * from ct_form_config_info where listConfigInfoId=#{id} and deleted=0 order by initorder asc") @Result(column="id",property="id") @Result(column="listconfiginfoid",property="listConfigInfoId") @Result(column="buildentityid",property="buildEntityId") @Result(column="fieldinfoid",property="fieldInfoId") @Result(column="name",property="name") @Result(column="description",property="description") @Result(column="addshow",property="addShow") @Result(column="updateshow",property="updateShow") @Result(column="detailshow",property="detailShow") @Result(column="initorder",property="initOrder") @Result(column="formfieldtype",property="formFieldType") @Result(column="colvalue",property="colValue") @Result(column="datefield",property="dateField") @Result(column="datepattern",property="datePattern") @Result(column="deleted",property="deleted") @Result(column="updateTime",property="updateTime") @Result(column="insertTime",property="insertTime") @Result(column="shFGL",property="shFGL") @Result(column="fieldinfoid",property="fieldInfo",one=@One(select="com.mbap.ct.fieldinfo.mapper.FieldInfoMapper.selectById")) @Result(column="id",property="formValidRules",many=@Many(select="com.mbap.ct.formvalidationrule.mapper.FormValidationRuleMapper.getByFormConfigInfoId")) List<FormConfigInfo> getFormConfigInfoByBuildEntityId(String id)
-