1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.mes.bigstoragecagetask.entity;
|
| import lombok.Data;
|
| /**
| * @Author : zhoush
| * @Date: 2025/3/3 15:05
| * @Description:
| */
| @Data
| public class BigStorageTaskVO extends BigStorageCageTask{
|
| /**
| * 是否相同
| */
| private int isSame;
| }
|
|