15 lines
295 B
Plaintext
15 lines
295 B
Plaintext
|
|
package com.bonus.bm.service;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import com.bonus.bm.beans.CompanyTypeBean;
|
||
|
|
import com.bonus.sys.BaseService;
|
||
|
|
|
||
|
|
public interface CompanyTypeService extends BaseService<CompanyTypeBean>{
|
||
|
|
|
||
|
|
List<CompanyTypeBean> getCompanyType();
|
||
|
|
|
||
|
|
CompanyTypeBean findByName(String name);
|
||
|
|
|
||
|
|
}
|