21 lines
532 B
Plaintext
21 lines
532 B
Plaintext
package com.cmeim.basic.service.impl;
|
|
|
|
import com.cmeim.basic.po.BaShiftsType;
|
|
import com.cmeim.basic.mapper.BaShiftsTypeMapper;
|
|
import com.cmeim.basic.service.IBaShiftsTypeService;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* <p>
|
|
* 班制类型 服务实现类
|
|
* </p>
|
|
*
|
|
* @author wuyuqi
|
|
* @since 2022-08-30
|
|
*/
|
|
@Service
|
|
public class BaShiftsTypeServiceImpl extends ServiceImpl<BaShiftsTypeMapper, BaShiftsType> implements IBaShiftsTypeService {
|
|
|
|
}
|