zhujie
2025-04-18 19428a49b4c07b14097615d48a7a72dbf941c4e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.mzl.flower.dto.request.flower;
 
import lombok.Data;
 
@Data
public class ParamTableColumn {
 
    private String comment;//描述
 
    private String column;//字段
 
    private Boolean primaryKey;//是否主键
 
    private String type;//类型
 
}