You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
389 B
Java
16 lines
389 B
Java
2 years ago
|
package com.glxp.api.dao.dev;
|
||
2 years ago
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
2 years ago
|
import com.glxp.api.entity.dev.InvMAExplanationEntity;
|
||
2 years ago
|
|
||
|
public interface InvMAExplanationDao extends BaseMapper<InvMAExplanationEntity> {
|
||
2 years ago
|
|
||
|
/**
|
||
|
* 根据状态值查询库存养护描述
|
||
|
*
|
||
|
* @param status
|
||
|
* @return
|
||
|
*/
|
||
|
InvMAExplanationEntity selectByStatus(int status);
|
||
2 years ago
|
}
|