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

package pm
/******************************************************************************
*
* @Description : 批量添加UserAssetLst绑定前端结构体
*
* @Author : Zhang Xin
*
* @Date : 2021/4/8
*
******************************************************************************/
type UserAssetLstInsert struct {
UserId string `json:"userId"`
Records []UserAssetLst `json:"records"`
}
/******************************************************************************
*
* @Description : 批量添加UserServiceLst绑定前端结构体
*
* @Author : Zhang Xin
*
* @Date : 2021/4/8
*
******************************************************************************/
type UserServiceLstInsert struct {
UserId string `json:"userId"`
Records []UserServiceLst `json:"records"`
}
//type UserAssetLstJoin struct {
// UserAssetLst `xorm:"extents"`
// models.PmAsset `xorm:"extents"`
//}