提交 | 用户 | 时间
|
449017
|
1 |
package com.iailab.module.model.mpk.dto; |
D |
2 |
|
|
3 |
import com.baomidou.mybatisplus.annotation.TableId; |
|
4 |
import com.baomidou.mybatisplus.annotation.TableName; |
|
5 |
import lombok.Data; |
|
6 |
|
|
7 |
import java.io.Serializable; |
|
8 |
|
|
9 |
/** |
|
10 |
* @description: MPK模型方法 |
|
11 |
* @author: dzd |
|
12 |
* @date: 2024/9/9 10:52 |
|
13 |
**/ |
|
14 |
@Data |
|
15 |
public class ModelMethodDTO implements Serializable { |
|
16 |
private static final long serialVersionUID = 1L; |
|
17 |
|
|
18 |
private String id; |
|
19 |
|
|
20 |
private String mpkFileId; |
|
21 |
|
|
22 |
private String methodName; |
|
23 |
|
|
24 |
private Integer dataLength; |
|
25 |
|
|
26 |
private Integer model; |
|
27 |
} |