mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
* fix: 达梦数据库连接修复,以支持带特殊字符的密码和schema * fix: oracle bug修复 * feat: dbms支持sqlite * fix: dbms 修改字段名bug
16 lines
602 B
Go
16 lines
602 B
Go
package form
|
||
|
||
type InstanceForm struct {
|
||
Id uint64 `json:"id"`
|
||
Name string `binding:"required" json:"name"`
|
||
Type string `binding:"required" json:"type"` // 类型,mysql oracle等
|
||
Host string `binding:"required" json:"host"`
|
||
Port int `json:"port"`
|
||
Sid string `json:"sid"`
|
||
Username string `json:"username"`
|
||
Password string `json:"password"`
|
||
Params string `json:"params"`
|
||
Remark string `json:"remark"`
|
||
SshTunnelMachineId int `json:"sshTunnelMachineId"`
|
||
}
|