Commit 970bf042 by chamberone

fix: 序列化错误

1 parent eab675f9
......@@ -18,6 +18,11 @@ public class OrganizationDTO {
*/
private String type;
// 添加默认构造方法,否则反序列化会报错
public OrganizationDTO() {
super();
}
public OrganizationDTO(String id, String name, String type) {
this.id = id;
this.name = name;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!