package com.iailab.module.model.matlab.entity;

import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

import java.util.Date;

/**
 * 
 *
 * @author Dzd 
 * @since 1.0.0 2025-02-08
 */
@Data
@TableName("t_ml_model_method")
public class MlModelMethodEntity {

    /**
     * 
     */
	private String id;
    /**
     * 模型id
     */
	private String mlModelId;
    /**
     * 全类名
     */
	private String className;
    /**
     * 方法名
     */
	private String methodName;
    /**
     * 数据长度
     */
	private Integer dataLength;
    /**
     * 输出长度
     */
	private Integer outLength;
    /**
     * 排序
     */
	private Integer sort;
}