You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
478 B
29 lines
478 B
package ${package}.dto;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
import lombok.Data;
|
|
|
|
#if(${hasBigDecimal})
|
|
import java.math.BigDecimal;
|
|
#end
|
|
|
|
/**
|
|
* ${comments}
|
|
*
|
|
* @author ${author} ${email}
|
|
* @since ${version} ${date}
|
|
*/
|
|
@Data
|
|
public class ${className}DTO implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
#foreach ($column in $columns)
|
|
/**
|
|
* $column.comments
|
|
*/
|
|
private $column.attrType $column.attrname;
|
|
|
|
#end
|
|
}
|