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.
|
package model |
|
|
|
// const . |
|
const ( |
|
IdentifyOk = 0 |
|
IdentifyNoInfo = 1 |
|
|
|
PhoneOk = 0 |
|
Phone17x = 1 |
|
PhoneEmpty = 2 |
|
) |
|
|
|
// IdentifyInfo . |
|
type IdentifyInfo struct { |
|
Identify int8 `json:"'identify'"` |
|
Phone int8 `json:"phone"` |
|
}
|
|
|