修改实体类属性类型

This commit is contained in:
zhaokaiyao@91isoft.com
2021-10-08 14:53:28 +08:00
parent b4ab5a8f43
commit 36df1dc472
@@ -17,9 +17,9 @@ public class ResponseDto {
// }
List<Company> LIST;
List<?> LIST;
public ResponseDto(Head HEAD, List<Company> LIST) {
public ResponseDto(Head HEAD, List<?> LIST) {
this.HEAD = HEAD;
this.LIST = LIST;
}