17 lines
510 B
Plaintext
17 lines
510 B
Plaintext
|
|
package com.bonus.newSettlement.service;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import com.bonus.newSettlement.beans.MaTypeProjectStorageBean;
|
||
|
|
import com.bonus.sys.BaseService;
|
||
|
|
|
||
|
|
public interface MaTypeProjectStorageService extends BaseService<MaTypeProjectStorageBean> {
|
||
|
|
|
||
|
|
List<MaTypeProjectStorageBean> findUnSltMaTypeList(MaTypeProjectStorageBean o);
|
||
|
|
|
||
|
|
List<MaTypeProjectStorageBean> findUnSltMaTypeLists(MaTypeProjectStorageBean o);
|
||
|
|
|
||
|
|
List<MaTypeProjectStorageBean> findUnFinishMaTypeList(MaTypeProjectStorageBean o);
|
||
|
|
|
||
|
|
}
|