李白
昨天 a0a32468bd6f5e887938674d3c2cf70cc2f555b8
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 {
}