|
@@ -0,0 +1,19 @@
|
|
|
+package org.jeecg.modules.cost.service.impl;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import org.jeecg.modules.cost.entity.SyCostAllocationShipdetail;
|
|
|
+import org.jeecg.modules.cost.entity.SyCostJson;
|
|
|
+import org.jeecg.modules.cost.mapper.SyCostAllocationShipdetailMapper;
|
|
|
+import org.jeecg.modules.cost.mapper.SyCostJsonMapper;
|
|
|
+import org.jeecg.modules.cost.service.ISyCostAllocationShipdetailService;
|
|
|
+import org.jeecg.modules.cost.service.ISyCostJsonService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+
|
|
|
+@Service
|
|
|
+public class SyCostJsonServiceImpl extends ServiceImpl<SyCostJsonMapper, SyCostJson> implements ISyCostJsonService {
|
|
|
+
|
|
|
+}
|