1234567891011121314151617181920 |
- package entity
- import "gopkg.in/guregu/null.v3"
- type ActInfo struct {
- Id int `db:"id" json:"id"`
- CustomName null.String `db:"custom_name" json:"custom_name"`
- Age null.Int `db:"age" json:"age"`
- Gender null.String `db:"gender" json:"gender"`
- Mobile null.String `db:"mobile" json:"mobile"`
- Address null.String `db:"address" json:"address"`
- ExCode null.String `db:"ex_code" json:"ex_code"`
- PayType string `db:"pay_type" json:"pay_type"`
- Payment null.Int `db:"payment" json:"payment"`
- CreatedAt string `db:"created_at" json:"created_at"`
- Extra null.String `db:"extra" json:"extra"`
- Source string `db:"source" json:"source"`
- Status string `db:"status" json:"status"`
- Remark null.String `db:"remark" json:"remark"`
- }
|