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.

34 lines
1023 B

  1. package pm
  2. /******************************************************************************
  3. *
  4. * @Description : 批量添加UserAssetLst绑定前端结构体
  5. *
  6. * @Author : Zhang Xin
  7. *
  8. * @Date : 2021/4/8
  9. *
  10. ******************************************************************************/
  11. type UserAssetLstInsert struct {
  12. UserId string `json:"userId"`
  13. Records []UserAssetLst `json:"records"`
  14. }
  15. /******************************************************************************
  16. *
  17. * @Description : 批量添加UserServiceLst绑定前端结构体
  18. *
  19. * @Author : Zhang Xin
  20. *
  21. * @Date : 2021/4/8
  22. *
  23. ******************************************************************************/
  24. type UserServiceLstInsert struct {
  25. UserId string `json:"userId"`
  26. Records []UserServiceLst `json:"records"`
  27. }
  28. //type UserAssetLstJoin struct {
  29. // UserAssetLst `xorm:"extents"`
  30. // models.PmAsset `xorm:"extents"`
  31. //}