BaseEntity.java
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:0k
源码类别:

Java编程

开发平台:

Java

  1. package org.springframework.samples.petclinic;
  2. /**
  3.  * Simple JavaBean domain object with an id property.
  4.  * Used as a base class for objects needing this property.
  5.  *
  6.  * @author Ken Krebs
  7.  * @author Juergen Hoeller
  8.  */
  9. public class BaseEntity {
  10. private Integer id;
  11. public void setId(Integer id) {
  12. this.id = id;
  13. }
  14. public Integer getId() {
  15. return id;
  16. }
  17. public boolean isNew() {
  18. return (this.id == null);
  19. }
  20. }