| | |
| | | <result column="creditCode" property="creditcode"/> |
| | | <result column="enterpriseName" property="enterprisename"/> |
| | | <result column="representative" property="representative"/> |
| | | <result column="registrationStatus" property="registrationstatus"/> |
| | | <result column="regstsat" property="regstsat"/> |
| | | <result column="establishTime" property="establishtime"/> |
| | | <result column="registeredCapital" property="registeredcapital"/> |
| | | <result column="capital" property="capital"/> |
| | |
| | | <result column="region" property="region"/> |
| | | <result column="registration" property="registration"/> |
| | | <result column="industry" property="industry"/> |
| | | <result column="identification" property="identification"/> |
| | | <result column="tenantId" property="tenantid"/> |
| | | <result column="stats" property="stats"/> |
| | | </resultMap> |
| | | |
| | | |
| | | <select id="selectInformationPage" resultMap="informationResultMap"> |
| | | select * from sys_information where is_deleted = 0 |
| | | select * from sys_information where 1=1 |
| | | <if test="information.enterprisename!=null and information.enterprisename!=''"> |
| | | and enterpriseName like concat(concat('%', #{information.enterprisename}),'%') |
| | | </if> |
| | | <if test="information.representative!=null and information.representative!=''"> |
| | | and representative like concat(concat('%', #{information.representative}),'%') |
| | | </if> |
| | | <if test="information.stats!=null and information.stats!=''"> |
| | | and stats=#{stats} |
| | | </if> |
| | | </select> |
| | | |
| | | </mapper> |