附近小店
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.

user_app_list.go 302 B

1 month ago
12345678
  1. package model
  2. type UserAppList struct {
  3. Id int `json:"id" xorm:"int(11) NOT NULL "`
  4. Uuid int64 `json:"uuid" xorm:"int(10) NOT NULL "`
  5. AppId int64 `json:"app_id" xorm:"int(10) NOT NULL "`
  6. SmsPlatform string `json:"sms_platform" xorm:"varchar(255) DEFAULT 'mob' "`
  7. }