| | |
| | | id, name, invoicing_company, invoicing_method, electricity_tariff, service_tariff, added_service_tariff, del_flag, create_time |
| | | </sql> |
| | | |
| | | |
| | | <select id="pageList" resultMap="BaseResultMap"> |
| | | select * from t_invoice_type where del_flag = 0 |
| | | <if test="null != req.name and '' != req.name"> |
| | | and name like CONCAT('%', #{req.name}, '%') |
| | | </if> |
| | | <if test="null != req.company and '' != req.company"> |
| | | and invoicing_company like CONCAT('%', #{req.company}, '%') |
| | | </if> |
| | | <if test="null != req.method"> |
| | | and invoicing_method = #{req.method} |
| | | </if> |
| | | order by create_time desc |
| | | </select> |
| | | </mapper> |