宠物实体类
// 宠物实体类 public class Pet {private int id; // 宠物IDprivate String name; // 宠物名字private String breed; // 宠物品种private String gender; // 宠物性别private int age; // 宠物年龄private double price; // 宠物价格private int sellerId; // 卖家ID// 构造函数public Pet(int id, String name, String breed, String gender, int age, double price, int sellerId) {this.id = id;this.name = name;this.breed = breed;this.gender = gender;this.age = age;this.price = price;this.sellerId = sellerId;}// getter和setter方法public int getId() { return id; }public void setId(int id) { this.id = id; }public String getName() { return name; }public void setName(String name) { this.name = name; }public String getBreed() { return breed; }public void setBreed(String breed) { this.breed = breed; }public String getGender() { return gender; }public void setGender(String gender) { this.gender = gender; }public int getAge() { return age; }public void setAge(int age) { this.age = age; }public double getPrice() { return price; }public void setPrice(double price) { this.price = price; }public int getSellerId() { return sellerId; }public void setSellerId(int sellerId) { this.sellerId = sellerId; } }
宠物实体类
// 宠物实体类 public class Pet {private int id; // 宠物IDprivate String name; // 宠物名字private String breed; // 宠物品种private String gender; // 宠物性别private int age; // 宠物年龄private double price; // 宠物价格private int sellerId; // 卖家ID// 构造函数public Pet(int id, String name, String breed, String gender, int age, double price, int sellerId) {this.id = id;this.name = name;this.breed = breed;this.gender = gender;this.age = age;this.price = price;this.sellerId = sellerId;}// getter和setter方法public int getId() { return id; }public void setId(int id) { this.id = id; }public String getName() { return name; }public void setName(String name) { this.name = name; }public String getBreed() { return breed; }public void setBreed(String breed) { this.breed = breed; }public String getGender() { return gender; }public void setGender(String gender) { this.gender = gender; }public int getAge() { return age; }public void setAge(int age) { this.age = age; }public double getPrice() { return price; }public void setPrice(double price) { this.price = price; }public int getSellerId() { return sellerId; }public void setSellerId(int sellerId) { this.sellerId = sellerId; } }
发布评论