You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
334 B
14 lines
334 B
package com.jianteng.modules.pms.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.jianteng.modules.pms.entity.SupplierEntity;
|
|
|
|
|
|
/**
|
|
* @Classname SupplierService
|
|
* @Description TODO
|
|
* @Date 2023/2/27 17:22
|
|
* @Created by sxm
|
|
*/
|
|
public interface SupplierService2 extends IService<SupplierEntity> {
|
|
}
|