package request
|
|
type GetCodeList struct {
|
PageInfo
|
CodeStandID string `json:"codeStandID"`
|
Name string `json:"name"`
|
Type string `json:"type"`
|
}
|
|
type CodeStandard struct {
|
ID string `json:"id"`
|
Name string `json:"name"`
|
Type string `json:"type"`
|
Method int32 `json:"method"`
|
Status string `json:"status"`
|
List []*CodeRule `json:"list"`
|
AutoRule *CodeAuto `json:"autoRule"`
|
}
|
|
type CodeRule struct {
|
Name string `json:"name"`
|
Length int32 `json:"length"`
|
Desc string `json:"desc"`
|
}
|
|
type CodeAuto struct {
|
PrefixMethod int32 `json:"prefixMethod"`
|
PrefixValue string `json:"prefixValue"`
|
SuffixMethod int32 `json:"suffixMethod"`
|
AutoLength int32 `json:"autoLength"`
|
Desc string `json:"desc"`
|
}
|