25 lines
730 B
Java
25 lines
730 B
Java
|
|
package com.engine.salary.biz;
|
||
|
|
|
||
|
|
import com.engine.salary.entity.siaccount.param.InsuranceAccountDetailParam;
|
||
|
|
import weaver.general.GCONST;
|
||
|
|
import org.junit.Before;
|
||
|
|
import org.junit.Test;
|
||
|
|
import weaver.conn.RecordSet;
|
||
|
|
|
||
|
|
public class SIAccountBizTest {
|
||
|
|
@Before
|
||
|
|
public void startEnv() {
|
||
|
|
// 本地e9的demo路径
|
||
|
|
String rootPath = "D:\\xcsqls\\ecology\\";
|
||
|
|
GCONST.setRootPath(rootPath);
|
||
|
|
GCONST.setServerName("ecology");
|
||
|
|
}
|
||
|
|
@Test
|
||
|
|
public void test() {
|
||
|
|
InsuranceAccountDetailParam queryParam = new InsuranceAccountDetailParam();
|
||
|
|
queryParam.setBillMonth("2022-05");
|
||
|
|
SIAccountBiz siAccountBiz = new SIAccountBiz();
|
||
|
|
siAccountBiz.overView(queryParam);
|
||
|
|
}
|
||
|
|
}
|