#
Junjie
2024-03-27 9eccc25e5f8e764b18a84ad2d08171dd6fabb452
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.wcs.core.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.asrs.wcs.core.entity.MotionSts;
 
public interface MotionStsService extends IService<MotionSts> {
 
    MotionSts selectByFlag(String flag);
 
}