|
@ -1,6 +1,9 @@ |
|
|
package com.huaxing.pojo.dto; |
|
|
package com.huaxing.pojo.dto; |
|
|
|
|
|
|
|
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
|
import lombok.Builder; |
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
|
|
|
|
import lombok.NoArgsConstructor; |
|
|
|
|
|
|
|
|
import javax.validation.constraints.NotEmpty; |
|
|
import javax.validation.constraints.NotEmpty; |
|
|
|
|
|
|
|
@ -14,6 +17,9 @@ import javax.validation.constraints.NotEmpty; |
|
|
* @Version: 1.0 |
|
|
* @Version: 1.0 |
|
|
*/ |
|
|
*/ |
|
|
@Data |
|
|
@Data |
|
|
|
|
|
@NoArgsConstructor |
|
|
|
|
|
@AllArgsConstructor |
|
|
|
|
|
@Builder(builderClassName = "Builder", buildMethodName = "build", toBuilder = true) |
|
|
public class TableColumnDTO { |
|
|
public class TableColumnDTO { |
|
|
/** |
|
|
/** |
|
|
* 列名 |
|
|
* 列名 |
|
@ -32,11 +38,4 @@ public class TableColumnDTO { |
|
|
*/ |
|
|
*/ |
|
|
private String columnDesc; |
|
|
private String columnDesc; |
|
|
|
|
|
|
|
|
public TableColumnDTO() { |
|
|
|
|
|
} |
|
|
|
|
|
public TableColumnDTO(String columnName, String columnType, String columnDesc) { |
|
|
|
|
|
this.columnName = columnName; |
|
|
|
|
|
this.columnType = columnType; |
|
|
|
|
|
this.columnDesc = columnDesc; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
} |
|
|