#
vincentlu
2025-12-26 b73d4c5f5995bdb38fab1cdfdf413e759db261f2
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.zy.acs.manager.manager.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.acs.manager.manager.entity.Sta;
import com.zy.acs.manager.manager.enums.StaTypeType;
 
public interface StaService extends IService<Sta> {
 
    Sta selectByStaNo(String staNo);
 
    Sta selectByCode(Long codeId, StaTypeType type);
 
}