zhaowenxuan
2024-12-10 22ff4e88cb9d8ff6a4fd8a5be43ef874cbeebd5f
1
2
3
4
5
6
7
8
package com.ltkj.hosp.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ltkj.hosp.sqlDomain.LtkjHisUser;
 
public interface LtkjHisUserService extends IService<LtkjHisUser> {
    LtkjHisUser getHisUserByHisGh(String hisgh);
}