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"`
|
|
//}
|