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.
23 lines
408 B
Smarty
23 lines
408 B
Smarty
3 years ago
|
// Code generated by goctl. DO NOT EDIT.
|
||
|
package com.xhb.logic.http.packet.{{.packet}}.model;
|
||
|
|
||
|
import org.jetbrains.annotations.NotNull;
|
||
|
import org.jetbrains.annotations.Nullable;
|
||
|
{{.imports}}
|
||
|
|
||
|
public class {{.className}} extends {{.superClassName}} {
|
||
|
|
||
|
{{.properties}}
|
||
|
{{if .HasProperty}}
|
||
|
|
||
|
public {{.className}}() {
|
||
|
}
|
||
|
|
||
|
public {{.className}}({{.params}}) {
|
||
|
{{.constructorSetter}}
|
||
|
}
|
||
|
{{end}}
|
||
|
|
||
|
{{.getSet}}
|
||
|
}
|