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.
17 lines
377 B
17 lines
377 B
package com.lingnan.supermarket.dao;
|
|
|
|
import java.util.Vector;
|
|
|
|
import com.lingnan.supermarket.dto.OutRecord;
|
|
|
|
public interface outRecordService {
|
|
//查询全部进货订单
|
|
Vector<OutRecord> findAllOutRecord ();
|
|
//查询某个进货订单
|
|
Vector<OutRecord> findByIdOutRecordr (String oNumber );
|
|
|
|
|
|
int addoutRecord(OutRecord or);
|
|
int deleteOutOrder(String oNumber);
|
|
}
|