huminmin
4 天以前 74b04f3987fd39eca62b772147ceac7238118da8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.ruoyi.productionPlan.service;
 
import com.ruoyi.productionPlan.service.impl.ProdDemandService;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
 
/**
 * <br>
 *
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/10 9:15
 */
@SpringBootTest
class ProdDemandServiceTest {
 
    @Autowired
    private ProdDemandService prodDemandService;
 
    @Test
    void loadProdDemandData() {
        prodDemandService.LoadProdDemandData(1, 1);
    }
}