package common type SystemAuditLog struct { // 【操作对象的id】操作对象的id EntityId *float64 `json:"entityId"` // 【主题】主题 EntityName string `json:"entityName"` // 【操作人Id】操作人Id OperatorId string `json:"operatorId"` // 【操作人】操作人 Operator string `json:"operator"` // 【操作人手机号】操作人手机号 Mobile string `json:"mobile"` // 【操作人员工编号】操作人员工编号 Number string `json:"number"` // 【操作人邮箱】操作人邮箱 Email string `json:"email"` // 【操作人所属部门】操作人所属部门 Departments []*Department `json:"departments"` // 【详细操作】详细操作 DetailedOperation string `json:"detailedOperation"` // 【操作时间】操作时间 CreateTime string `json:"createTime"` }