elec.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. package elec
  2. import (
  3. "encoding/json"
  4. "time"
  5. xtime "go-common/library/time"
  6. )
  7. // UserState user elec state.
  8. type UserState struct {
  9. ID string `json:"-"`
  10. Mid string `json:"mid"`
  11. State string `json:"state"`
  12. Reason string `json:"reason"`
  13. Count string `json:"-"`
  14. CTime string `json:"-"`
  15. MTime string `json:"-"`
  16. }
  17. // UserInfo user elec info.
  18. type UserInfo struct {
  19. ID int64 `json:"-"`
  20. Mid int64 `json:"mid"`
  21. State int16 `json:"state"`
  22. Reason string `json:"reason"`
  23. Count int16 `json:"-"`
  24. CTime xtime.Time `json:"-"`
  25. MTime xtime.Time `json:"-"`
  26. }
  27. // ArcState arc elec info.
  28. type ArcState struct {
  29. Show bool `json:"show"`
  30. State int16 `json:"state"`
  31. Total int `json:"total"`
  32. Count int `json:"count"`
  33. Reason string `json:"reason"`
  34. List json.RawMessage `json:"list,omitempty"`
  35. User json.RawMessage `json:"user,omitempty"`
  36. }
  37. // Notify up-to-date info to user
  38. type Notify struct {
  39. Content string `json:"content"`
  40. }
  41. // EleRelation get elec relation.
  42. type EleRelation struct {
  43. RetList []struct {
  44. Mid int64 `json:"mid"`
  45. IsElec bool `json:"is_elec"`
  46. } `json:"ret_list"`
  47. }
  48. // Status elec setting.
  49. type Status struct {
  50. Specialday int8 `json:"display_specialday"`
  51. }
  52. // Rank up rank.
  53. type Rank struct {
  54. MID int64 `json:"mid"`
  55. PayMID int64 `json:"pay_mid"`
  56. Rank int64 `json:"rank"`
  57. Uname string `json:"uname"`
  58. Avatar string `json:"avatar"`
  59. IsFriend bool `json:"isfriend"`
  60. MTime string `json:"mtime"`
  61. }
  62. // BillList daily bill list.
  63. type BillList struct {
  64. List []*Bill `json:"list"`
  65. TotalCount int `json:"totalCount"`
  66. Pn int `json:"pn"`
  67. Ps int `json:"ps"`
  68. }
  69. // Bill bill detail.
  70. type Bill struct {
  71. ID int64 `json:"id"`
  72. MID int64 `json:"mid"`
  73. ChannelType int8 `json:"channelType"`
  74. ChannelTyName string `json:"channelTypeName"`
  75. AddNum float32 `json:"addNum"`
  76. ReduceNum float32 `json:"reduceNum"`
  77. WalletBalance float32 `json:"walletBalance"`
  78. DateVersion string `json:"dateVersion"`
  79. Weekday string `json:"weekday"`
  80. Remark string `json:"remark"`
  81. MonthBillResp *MonthBill `json:"monthBillResp"`
  82. }
  83. // MonthBill month bill.
  84. type MonthBill struct {
  85. LastMonthNum float32 `json:"last_month_num"`
  86. ServiceNum float32 `json:"service_num"`
  87. BkNum float32 `json:"bk_num"`
  88. }
  89. // Balance get battery balance.
  90. type Balance struct {
  91. Ts string `json:"ts"`
  92. BrokerageAudit int8 `json:"brokerage_audit"`
  93. BpayAcc *BpayAccount `json:"bpay_account"`
  94. Wallet *Wall `json:"wallet"`
  95. }
  96. // BpayAccount shell detail.
  97. type BpayAccount struct {
  98. Brokerage float32 `json:"brokerage"`
  99. DefaultBp float32 `json:"default_bp"`
  100. }
  101. // Wall wallet detail.
  102. type Wall struct {
  103. MID int64 `json:"mid"`
  104. Balance float32 `json:"balance"`
  105. SponsorBalance float32 `json:"sponsorBalance"`
  106. Ver int32 `json:"-"`
  107. }
  108. // ChargeBill daily bill for app charge.
  109. type ChargeBill struct {
  110. List []*Bill `json:"list"`
  111. Pager struct {
  112. Current int `json:"current"`
  113. Size int `json:"size"`
  114. Total int `json:"total"`
  115. } `json:"pager"`
  116. }
  117. // RecentElec recent detail for app.
  118. type RecentElec struct {
  119. AID int64 `json:"aid"`
  120. MID int64 `json:"mid"`
  121. ElecNum float32 `json:"elec_num"`
  122. Title string `json:"title"`
  123. Uname string `json:"uname"`
  124. Avatar string `json:"avatar"`
  125. OrderNO string `json:"-"`
  126. CTime string `json:"ctime"`
  127. }
  128. // RecentElecList recent list for app.
  129. type RecentElecList struct {
  130. List []*RecentElec `json:"list"`
  131. Pager struct {
  132. Current int `json:"current"`
  133. Size int `json:"size"`
  134. Total int `json:"total"`
  135. } `json:"pager"`
  136. }
  137. // RemarkList remark list.
  138. type RemarkList struct {
  139. List []*Remark `json:"list"`
  140. Pager struct {
  141. Current int `json:"current"`
  142. Size int `json:"size"`
  143. Total int `json:"total"`
  144. } `json:"pager"`
  145. }
  146. // Remark remark detail.
  147. type Remark struct {
  148. ID int64 `json:"id"`
  149. AID int64 `json:"aid"`
  150. MID int64 `json:"mid"`
  151. ReplyMID int64 `json:"reply_mid"`
  152. ElecNum int64 `json:"elec_num"`
  153. State int8 `json:"state"`
  154. Msg string `json:"msg"`
  155. ArcName string `json:"aname"`
  156. Uname string `json:"uname"`
  157. Avator string `json:"avator"`
  158. ReplyName string `json:"reply_name"`
  159. ReplyAvator string `json:"reply_avator"`
  160. ReplyMsg string `json:"reply_msg"`
  161. CTime xtime.Time `json:"ctime"`
  162. ReplyTime xtime.Time `json:"reply_time"`
  163. }
  164. // Earnings for elec.
  165. type Earnings struct {
  166. State int8 `json:"state"`
  167. Balance float32 `json:"balance"`
  168. Brokerage float32 `json:"brokerage"`
  169. }
  170. // Weekday get day.
  171. func Weekday(t time.Time) (w string) {
  172. switch t.Weekday().String() {
  173. case "Monday":
  174. w = "周一"
  175. case "Tuesday":
  176. w = "周二"
  177. case "Wednesday":
  178. w = "周三"
  179. case "Thursday":
  180. w = "周四"
  181. case "Friday":
  182. w = "周五"
  183. case "Saturday":
  184. w = "周六"
  185. case "Sunday":
  186. w = "周日"
  187. }
  188. return
  189. }