feat: 修改说明
parent
698237fd82
commit
18846c211e
|
|
@ -10,8 +10,8 @@
|
||||||
|
|
||||||
<artifactId>scfs-api-service</artifactId>
|
<artifactId>scfs-api-service</artifactId>
|
||||||
<version>2.0.4</version>
|
<version>2.0.4</version>
|
||||||
<name>scfs-api-service:通用类接口</name>
|
<name>scfs-api-service:业务接口模型</name>
|
||||||
<description>通用类接口</description>
|
<description>业务接口模型</description>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,23 @@
|
||||||
|
package com.czcb.scfs.api.test.service;
|
||||||
|
|
||||||
|
import com.czcb.scfs.api.service.v2.invoice.InvoiceService;
|
||||||
|
import com.czcb.scfs.api.service.v2.invoice.model.InvoiceInfoSaveRequest;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author wangwei
|
||||||
|
* @since 2024/7/24
|
||||||
|
*/
|
||||||
|
@SpringBootTest
|
||||||
|
class InvoiceServiceTest {
|
||||||
|
@Resource
|
||||||
|
private InvoiceService invoiceService;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void addTest() {
|
||||||
|
invoiceService.add(new InvoiceInfoSaveRequest());
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue