123456789101112131415 |
- package model
- import operationPb "kpt-tmr-group/proto/go/backend/operation"
- type SystemMobile struct {
- Id int64 `json:"id,omitempty"`
- Name string `json:"name"`
- IsShow operationPb.IsShow_Kind `json:"is_show"`
- CreatedAt int64 `json:"created_at"`
- UpdatedAt int64 `json:"updated_at"`
- }
- func (s *SystemMobile) TableName() string {
- return "system_mobile"
- }
|