GZMachinesWeb/.svn/pristine/af/afc66e5eee142f77ff7448459ca...

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);
}