李白
2026-05-29 c865989f10e5a1ae4bb78831a879210fcdca2f83
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.by4cloud.platformx.business.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.by4cloud.platformx.business.entity.PlanSubjectMatter;
import com.by4cloud.platformx.business.mapper.PlanSubjectMatterMapper;
import com.by4cloud.platformx.business.service.PlanSubjectMatterService;
import org.springframework.stereotype.Service;
/**
 * 排产计划标的物
 *
 * @author platformx
 * @date 2026-05-14 10:55:14
 */
@Service
public class PlanSubjectMatterServiceImpl extends ServiceImpl<PlanSubjectMatterMapper, PlanSubjectMatter> implements PlanSubjectMatterService {
}