| | |
| | | css.project_name projectName, |
| | | css.survey_date surveyDate, |
| | | css.user_unit userUnit, |
| | | css.date_info dateInfo, |
| | | css.`fill_name` fillName, |
| | | css.post post, |
| | | css.telephone telephone, |
| | |
| | | css.service_attitude serviceAttitude, |
| | | css.technical_power technicalPower, |
| | | css.test_job testJob, |
| | | css.improvement_requirements improvementRequirements |
| | | css.reasonable_charge reasonableCharge, |
| | | css.improvement_requirements improvementRequirements, |
| | | css.other_supplements otherSupplements |
| | | FROM |
| | | cnas_satisfaction_survey css, |
| | | `user` u |
| | |
| | | 1 = 1 |
| | | AND css.user_id = u.id |
| | | and css.state=1 |
| | | <if test="dto.surveyDate!=null"> |
| | | and css.survey_date = ${dto.surveyDate} |
| | | <if test="surveyDate!=null"> |
| | | and date_format(css.survey_date,'%Y%m%d') = ${surveyDate} |
| | | </if> |
| | | <if test="dto.entryDate!=null"> |
| | | and css.entry_date = ${dto.entryDate} |
| | | <if test="entryDate!=null"> |
| | | and date_format(css.entry_date,'%Y%m%d') = ${entryDate} |
| | | </if> |
| | | order by css.id Desc |
| | | </select> |
| | | </mapper> |