附近小店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
810 B

  1. package md
  2. type PrinterReq struct {
  3. Sn string `json:"sn"`
  4. Key string `json:"key"`
  5. Remark string `json:"remark"`
  6. PhoneNum string `json:"phone_num"`
  7. Content string `json:"content"`
  8. Name string `json:"name"`
  9. Oid string `json:"oid"`
  10. PrinterType string `json:"printer_type"`
  11. }
  12. type AddPrinterResult struct {
  13. Data struct {
  14. No []string `json:"no"`
  15. Ok []string `json:"ok"`
  16. } `json:"data"`
  17. Msg string `json:"msg"`
  18. Ret int64 `json:"ret"`
  19. ServerExecutedTime int64 `json:"serverExecutedTime"`
  20. }
  21. type PrinterStateResult struct {
  22. Data interface{} `json:"data"`
  23. Msg string `json:"msg"`
  24. Ret int64 `json:"ret"`
  25. ServerExecutedTime int64 `json:"serverExecutedTime"`
  26. }