zhaowenxuan
昨天 dedacd79c93f8ef95e0cb986f5e7fbd27ddbd907
1
2
3
4
5
6
7
8
9
package com.ltkj.hosp.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ltkj.hosp.domain.TjUserAdvice;
 
public interface TjUserAdviceService extends IService<TjUserAdvice> {
 
    TjUserAdvice getTjUserAdviceByUserId(Long userId,Long adviceId);
}