blob: 858164d66a956d16f356a30215bd82729a82006a [file] [log] [blame]
package com.alibaba.dubbo.test.service;
import com.alibaba.dubbo.test.dto.Bean;
import com.alibaba.dubbo.test.dto.SubMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* Created by ken.lj on 2017/9/24.
*/
public interface DemoService {
String testString(String str);
Bean testPojo(Bean bean);
List<Bean> testList(List<Bean> list);
Map<String, Object> testMap(Map<String, Object> map);
Map<String, Object> testTelnetSubMap(SubMap subMap);
/*LocalDateTime testJava8Time(LocalDateTime instant);
ZonedDateTime testJava8Time(ZonedDateTime zonedDateTime);*/
}