如果我想在服务层中使用此 DTO,如何将实体继承表示为 DTO

How can I represent entity inheiritance as DTO if I want to use this DTO in service layer

假设我在我的实体中有继承,例如: 动物 - parent 孩子们: 猫, 狗

我想在我的服务层中使用 DTO,我想知道如何将上面的继承表示为 DTO? 比如我在使用DTO之前在服务中有这样一个方法:Animal add(Animal animal)。 我想成为这样的人:AnimalDTO add(AnimalDTO team)

完全有可能,就像你对实体所做的那样。