
Untitled
By: a guest on
May 16th, 2012 | syntax:
None | size: 0.58 KB | hits: 9 | expires: Never
class AuditLog {
static searchable = true
String uuid
String requestId
String ipAddress
String username // User Causing the action
String patientMrn // Patient affected
Long encounterId // Encounter affected
String activity // Overarcing Category
String detail // Description of modification
String action // Create / Read / Update / Delete
String data // JSON
String practiceUuid
Date storeDate
Date dateCreated
Date lastUpdated
static constraints = {
patientMrn(nullable: true)
encounterId(nullable: true)
data(nullable: true)
}
}