fix empty operationId

This commit is contained in:
wing328
2015-07-27 11:21:51 +08:00
parent 31200acc1a
commit d0baa48fcd
2 changed files with 15 additions and 5 deletions

View File

@@ -14,8 +14,8 @@ public class Pet {
private Long id = null;
private Category category = null;
private String name = null;
private List<String> photoUrls = new ArrayList<String>() ;
private List<Tag> tags = new ArrayList<Tag>() ;
private List<String> photoUrls = new ArrayList<String>();
private List<Tag> tags = new ArrayList<Tag>();
public enum StatusEnum {
available, pending, sold,
};