| | |
| | | package com.gkhy.labRiskManage.domain.experiment.entity; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.hibernate.annotations.Where; |
| | | import org.springframework.data.annotation.CreatedDate; |
| | | import org.springframework.data.annotation.LastModifiedDate; |
| | | import org.springframework.data.jpa.domain.support.AuditingEntityListener; |
| | |
| | | @EntityListeners(AuditingEntityListener.class) |
| | | @Entity |
| | | @Table(name = "experiment_hazardous_waste") |
| | | @Where(clause = "delete_status = 0") |
| | | public class ExperimentHazardousWaste implements Serializable { |
| | | private static final long serialVersionUID = -50912711565680265L; |
| | | |