This commit is contained in:
linfso 2024-07-01 22:30:15 +08:00
parent 0ff76b9f65
commit 1e0e196eef
3 changed files with 11 additions and 7 deletions

View File

@ -83,4 +83,7 @@ public interface EmisCustomerUserMapper extends BaseMapper<EmisCustomerUser>
public EmisCustomerUser selectMonthCustomerByName(String name);
public EmisCustomerUser selectMonthCustomerByMonthlyPayCode(String monthlyPayCode);
}

View File

@ -1131,13 +1131,7 @@ public class EmisBaseService {
* @return
*/
public EmisCustomerUser getCustomerUserByMonthlyPayCode(String monthlyPayCode){
EmisCustomerUser queryEmisCustomerUser = new EmisCustomerUser();
queryEmisCustomerUser.setMonthlyPayCode(monthlyPayCode);
List<EmisCustomerUser> list=emisCustomerUserMapper.selectEmisCustomerUserList(queryEmisCustomerUser);
if(CollectionUtils.isEmpty(list)){
return null;
}
return list.get(0);
return emisCustomerUserMapper.selectMonthCustomerByMonthlyPayCode(monthlyPayCode);
}

View File

@ -386,4 +386,11 @@
where a.del_flag='0' and a.customer_type='2' and a.customer_name = #{customerName}
</select>
<select id="selectMonthCustomerByMonthlyPayCode" parameterType="string" resultMap="EmisCustomerUserResult">
select id, customer_code, customer_name, customer_name_en, simple_name, contact, phone, mobile, customer_type, settled_type, user_type, company, lic_no, dept_id, avatar, sex, invitation_info, login_ip, login_date, nick_name, union_id, openid, monthly_pay_code, user_name, password, owner_site, biz_site, biz_site_name, country, province, city, county, town, address, email, post_code, real_name, id_no, payee, salesmen, data_from, bl_open_oms, bl_sms, op_emp_code, first_signing_day, status, order_num, remark, del_flag, create_by, create_time, update_by, update_time, create_site, update_site
from emis_customer_user a
where a.del_flag='0' and a.customer_type='2' and a.monthly_pay_code= #{monthlyPayCode}
</select>
</mapper>