Pet.ets 88 B

123456
  1. //类名就是表名
  2. export class Pet{
  3. id?: number;
  4. name?: string;
  5. tag?: string;
  6. }