zhaowenxuan
10 天以前 2a9583fd376451ca77a0400af7f3a02d1b80e7f5
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);
}