#
luxiaotao1123
2021-03-12 40b501b6c1a19c6a68f08fde8dd48fc0fdcfca70
1
2
3
4
5
6
7
8
9
10
package zy.cloud.wms.manager.service;
 
import zy.cloud.wms.manager.entity.CustOrder;
import com.baomidou.mybatisplus.service.IService;
 
public interface CustOrderService extends IService<CustOrder> {
 
    boolean updateStatus(String number, Integer status);
 
}