| 123456789101112131415161718 |
- package newCentralControl
- import "log-server/model/typeManage"
- type PcInfo struct {
- Id int `json:"id"`
- PcCode string `json:"pc_code"` //租机编号
- PcName string `json:"pc_name"` //租机名称
- User string `json:"user"` //负责人
- //Status int `json:"status"` //status:-1停止 ,1运行
- CreateTime typeManage.LocalTime `json:"create_time"`
- UpdateTime typeManage.LocalTime `json:"update_time"`
- }
- func (PcInfo) TableName() string {
- return "pc_info"
- }
|