mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
23 lines
408 B
Smarty
23 lines
408 B
Smarty
// 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}}
|
|
}
|