Commit 80729ec3112c4cf38b994158c5b08ed3ffb532ea

Authored by cfl
1 parent d1a264094e
Exists in master and in 2 other branches dev, luanping

增加购买孕周时,孕周累加

Showing 1 changed file with 4 additions and 1 deletions

platform-biz-service/src/main/resources/mainOrm/master/PatientService.xml View file @ 80729ec
... ... @@ -179,7 +179,10 @@
179 179  
180 180  
181 181 <select id="getPatientService" resultMap="PatientServiceResultMap" parameterType="java.lang.String">
182   - select id,parentid,pid,ser_type,ser_doct,create_date,create_user_name,create_user,ser_status,update_date,update_user_name,update_user,hospital_id,ser_code,status,receive_date,receive_user,back_date,back_user,order_id,syn_status,is_old,per_type
  182 + select id,parentid,pid,ser_type,ser_doct,create_date,create_user_name,create_user,ser_status,
  183 + update_date,update_user_name,update_user,hospital_id,ser_code,
  184 + status,receive_date,receive_user,back_date,back_user,order_id,syn_status,is_old,per_type,
  185 + doctorWeek,serviceWeek
183 186 from patient_service where id = #{id,jdbcType=VARCHAR}
184 187 </select>
185 188