附近小店
25개 이상의 토픽을 선택하실 수 없습니다. 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

6 달 전
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. }