Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Delete ¶
type Delete struct {
ID string `form:"id"`
TableName string `form:"table_name"`
DbType string `form:"db_type,default=mysql"`
// contains filtered or unexported fields
}
func NewDeleteLogic ¶
type Insert ¶
type Insert struct {
TableName string `json:"table_name"`
DbType string `json:"db_type,default=mysql"`
InsertData map[string]interface{} `json:"insert_data"`
// contains filtered or unexported fields
}
func NewInsertLogic ¶
type List ¶
type List struct {
TableName string `json:"table_name"`
DbType string `json:"db_type,default=mysql"`
db.MysqlQueryParams
// contains filtered or unexported fields
}
func NewListLogic ¶
type Update ¶
type Update struct {
TableName string `json:"table_name"`
DbType string `json:"db_type,default=mysql"`
ID interface{} `json:"id"`
UpdateData map[string]interface{} `json:"update_data"`
// contains filtered or unexported fields
}
func NewUpdateLogic ¶
type ViewTable ¶
type ViewTable struct {
DbType string `form:"db_type,default=mysql"`
// contains filtered or unexported fields
}
func NewViewTableLogic ¶
Click to show internal directories.
Click to hide internal directories.