You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hrm-attendance/test/shuju/K3CloudApiClientSon.java

26 lines
1.2 KiB
Java

1 year ago
package shuju;
import kingdee.bos.webapi.client.K3CloudApiClient;
public class K3CloudApiClientSon extends K3CloudApiClient {
public K3CloudApiClientSon(String serverUrl) {
super(serverUrl);
}
public String view(String formid, String data) throws Exception {
return (String)this.execute("Kingdee.BOS.WebApi.ServicesStub.DynamicFormService.View", new Object[]{formid, data}, String.class);
}
public String GetSysReportData(String formid, String data) throws Exception {
return (String)this.execute("Kingdee.BOS.WebApi.ServicesStub.DynamicFormService.GetSysReportData", new Object[]{formid, data}, String.class);
}
1 year ago
public String queryXSDDSLTJ() throws Exception {
12 months ago
return (String)this.execute("SS.Count.WebApiService.XSDDSLTJ.ExecuteService,SS.Count03.WebApiService", new Object[]{""}, String.class);
1 year ago
}
public String queryCGDDSLTJ() throws Exception {
12 months ago
return (String)this.execute("SS.Count.WebApiService.CGDDSLTJ.ExecuteService,SS.Count03.WebApiService", new Object[]{""}, String.class);
1 year ago
}
public String querySCDDTJSL() throws Exception {
12 months ago
return (String)this.execute("SS.Count.WebApiService.JSKCCount.ExecuteService,SS.Count03.WebApiService", new Object[]{""}, String.class);
1 year ago
}
1 year ago
}