act_tvshop.go 814 B

1234567891011121314151617181920
  1. package entity
  2. import "gopkg.in/guregu/null.v3"
  3. type ActInfo struct {
  4. Id int `db:"id" json:"id"`
  5. CustomName null.String `db:"custom_name" json:"custom_name"`
  6. Age null.Int `db:"age" json:"age"`
  7. Gender null.String `db:"gender" json:"gender"`
  8. Mobile null.String `db:"mobile" json:"mobile"`
  9. Address null.String `db:"address" json:"address"`
  10. ExCode null.String `db:"ex_code" json:"ex_code"`
  11. PayType string `db:"pay_type" json:"pay_type"`
  12. Payment null.Int `db:"payment" json:"payment"`
  13. CreatedAt string `db:"created_at" json:"created_at"`
  14. Extra null.String `db:"extra" json:"extra"`
  15. Source string `db:"source" json:"source"`
  16. Status string `db:"status" json:"status"`
  17. Remark null.String `db:"remark" json:"remark"`
  18. }