base_resource_use_detail.go 357 B

1234567891011121314
  1. package entity
  2. var Base_resource_use_detail = base_resource_use_detail{}
  3. //消耗明细表
  4. type base_resource_use_detail struct {
  5. Id int64
  6. Appid string
  7. Use_id int64 //消耗表id
  8. Power_id int64 //权益id
  9. Surplus_count int64 //扣除数量
  10. Deduct_count int64 //扣除数量
  11. Create_time string //创建时间
  12. }