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.

13 lines
424 B

  1. package wm
  2. // assert和article关联关系插入前端绑定结构体
  3. type ArticleAssertRequest struct {
  4. AssertId string `json:"assertId"`
  5. AssertArtLstLi []AssertArtLst `json:"assertArtLstLi"`
  6. }
  7. // workArea和User关联关系插入前端绑定结构体
  8. type WorkAreaUserRequest struct {
  9. UserId string `json:"userId"`
  10. WorkAreaUserLstLi []WorkAreaUserLst `json:"workAreaUserLstLi"`
  11. }