#
Junjie
2024-12-06 b78564935a4e1005403e82a0e8649c562ab70ba7
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.wms.asrs.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.asrs.wms.asrs.entity.OrderNoRule;
 
public interface OrderNoRuleService extends IService<OrderNoRule> {
 
    String getOrderNo(Integer orderType);
 
}