12345678910111213141516171819202122 |
- package model
- import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
- const (
- ActiveLowest = "active_lowest"
- RuminaLowest = "rumina_lowest"
- )
- type SystemConfigure struct {
- Id int64 `json:"id"`
- Name string `json:"name"`
- Value string `json:"value"`
- Remarks string `json:"remarks"`
- IsShow pasturePb.IsShow_Kind `json:"is_show"`
- CreatedAt int64 `json:"createdAt"`
- UpdatedAt int64 `json:"updatedAt"`
- }
- func (s *SystemConfigure) TableName() string {
- return "system_configure"
- }
|