1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.flightfeather.grid.vo
|
| import com.flightfeather.grid.domain.ds1.entity.ClueInternal
| import com.flightfeather.grid.domain.ds1.entity.ClueTask
|
| /**
| *
| * @date 2025/4/23
| * @author feiyu02
| */
| class ClueInternalTaskVo {
|
| var clueInternal: ClueInternal? = null
| var clueTask: ClueTask? = null
| }
|
|