1
zhang
7 天以前 6112fa3065313b501de8823d8f1ff918575b3773
1
2
3
4
5
6
7
8
9
10
11
12
package com.zy.acs.manager.manager.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.acs.manager.manager.entity.Sta;
 
public interface StaService extends IService<Sta> {
 
    Sta selectByStaNo(String staNo);
 
    Sta selectByStaNoOrName(String staNo);
 
}