订单分佣规则
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

db.go 214 B

1 year ago
12345678
  1. package db
  2. import "xorm.io/xorm"
  3. func QueryNativeString(Db *xorm.Engine, sql string, args ...interface{}) ([]map[string]string, error) {
  4. results, err := Db.SQL(sql, args...).QueryString()
  5. return results, err
  6. }