You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.sztzjy.linkCommerce.entity.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author tz
|
|
* @date 2024/8/16 15:26
|
|
*/
|
|
@Data
|
|
public class AnalyzeDataDTO {
|
|
private String userId;
|
|
private String tableName;
|
|
private List<String> fieldList;
|
|
}
|