#
luxiaotao1123
2025-12-25 c66ae137f314075f261bb13a1158bbf8ea4bf645
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);
 
}