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.
28 lines
831 B
28 lines
831 B
package com.nov.KgLowDurable.service.Impl; |
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
import com.nov.KgLowDurable.mapper.LdApproveMapper; |
|
import com.nov.KgLowDurable.pojo.entity.LdApprove; |
|
import com.nov.KgLowDurable.service.ILdApproveService; |
|
import lombok.AllArgsConstructor; |
|
import org.springframework.beans.factory.annotation.Autowired; |
|
import org.springframework.stereotype.Service; |
|
|
|
import java.util.List; |
|
|
|
/** |
|
* 服务实现类 |
|
* @author liweidong |
|
*/ |
|
@Service |
|
@AllArgsConstructor |
|
public class LdApproveServiceImpl extends ServiceImpl<LdApproveMapper, LdApprove> implements ILdApproveService { |
|
|
|
@Autowired |
|
LdApproveMapper ldApproveMapper; |
|
|
|
@Override |
|
public List<LdApprove> getByFromId(Long formId,String type) { |
|
return ldApproveMapper.selectByFromId(formId,type); |
|
} |
|
}
|
|
|