riku
2025-08-25 2de612e9b260df2e76d4dd620ca739aa3b6e8c57
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.flightfeather.uav.lightshare.bean
 
import com.flightfeather.uav.domain.entity.SourceTraceMsg
 
/**
 *
 * @date 2025/8/6
 * @author feiyu02
 */
class SourceTraceMsgVo : SourceTraceMsg() {
 
    var blobId: Int? = null
    var blobMsgId: Int? = null
    var blobContent: String? = null
}