Skip to content

Commit

Permalink
Merge pull request #313 from bcgov/feature/GRAD2-3037
Browse files Browse the repository at this point in the history
GRAD2-3037 - adds missing create and update data to school and distri…
  • Loading branch information
mightycox authored Jan 24, 2025
2 parents 97d7ebb + 99ef019 commit ede4a2e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
package ca.bc.gov.educ.api.grad.report.model.dto.v2.reports;

import ca.bc.gov.educ.api.grad.report.model.dto.BaseModel;
import lombok.Data;
import lombok.EqualsAndHashCode;

import java.util.UUID;

@EqualsAndHashCode(callSuper = true)
@Data
public class BaseReport {
public class BaseReport extends BaseModel {
private UUID id;
private String report;
private String reportTypeCode;
Expand Down

0 comments on commit ede4a2e

Please sign in to comment.