123456789101112131415161718192021 |
- package models
- // ProxyEntity http代理实体类
- type ProxyEntity struct {
- Id int `orm:"pk;auto" json:"id"`
- Name string `orm:"size(100)" json:"name"`
- UserId int `json:"userId"` // 用户账号 Uid
- Enable bool `orm:"default(true)" json:"enable"`
- Rel string `json:"rel"` // 关联对象主键
- Patterns string `json:"patterns"`
- StripPrefix string `json:"stripPrefix"` // 去掉
- Target string `json:"target"` // 转发目标
- Ws string `json:"ws"` // websocket的URL
- Remark string `json:"remark"`
- }
- func (s *ProxyEntity) UniqueClone() (*ProxyEntity, string) {
- return &ProxyEntity{
- Id: s.Id,
- }, "Id"
- }
|