BaseEntity.java
资源名称:petclinic.rar [点击查看]
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:0k
源码类别:
Java编程
开发平台:
Java
- package org.springframework.samples.petclinic;
- /**
- * Simple JavaBean domain object with an id property.
- * Used as a base class for objects needing this property.
- *
- * @author Ken Krebs
- * @author Juergen Hoeller
- */
- public class BaseEntity {
- private Integer id;
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getId() {
- return id;
- }
- public boolean isNew() {
- return (this.id == null);
- }
- }