1234567891011121314151617181920212223242526272829 |
- package J20250718.demo02_exception;
- /**
- * @author WanJl
- * @version 1.0
- * @title Product
- * @description
- * @create 2025/7/18
- */
- public class Product {
- private String name;
- private Integer count;
- public Integer getCount() {
- return count;
- }
- public void setCount(Integer count) {
- this.count = count;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- }
|