|
@@ -56,16 +56,16 @@ type SetEdbChartClassifyPermissionReq struct {
|
|
|
// DataPermissionMessageItem
|
|
|
// @Description: 数据权限变更消息结构体
|
|
|
type DataPermissionMessageItem struct {
|
|
|
- DataPermissionMessageId int64 `json:"data_permission_message_id" orm:"column(data_permission_message_id);pk"`
|
|
|
- SendUserId int32 `json:"send_user_id"` // 发送人ID
|
|
|
- ReceiveUserId int32 `json:"receive_user_id"` // 接收者ID
|
|
|
- Content string `json:"content"` // 消息内容
|
|
|
- Remark string `json:"remark"` // 备注信息
|
|
|
- OpType int32 `json:"op_type"` // 操作类型,1:单个资产转移,2:资产模块转移,3:资产授权,4:资产分类授权
|
|
|
- OpUniqueCode string `json:"op_unique_code"` // 操作编码
|
|
|
- IsRead int32 `json:"is_read"` // 是否已读:0-未读;1-已读
|
|
|
- CreateTime string `json:"create_time"` // 创建时间
|
|
|
- ModifyTime string `json:"modify_time"` // 修改时间
|
|
|
+ DataPermissionMessageId int64 `orm:"column(data_permission_message_id);pk"`
|
|
|
+ SendUserId int32 // 发送人ID
|
|
|
+ ReceiveUserId int32 // 接收者ID
|
|
|
+ Content string // 消息内容
|
|
|
+ Remark string // 备注信息
|
|
|
+ OpType int32 // 操作类型,1:单个资产转移,2:资产模块转移,3:资产授权,4:资产分类授权
|
|
|
+ OpUniqueCode string // 操作编码
|
|
|
+ IsRead int32 // 是否已读:0-未读;1-已读
|
|
|
+ CreateTime string // 创建时间
|
|
|
+ ModifyTime string // 修改时间
|
|
|
}
|
|
|
|
|
|
// DataPermissionMessageListResp 资产数据列表响应体
|