Browse Source

开启需要的接口

pull/111/head
zhangxin 3 years ago
parent
commit
0c9e305c27
1 changed files with 17 additions and 1 deletions
  1. +17
    -1
      models/base/base.go

+ 17
- 1
models/base/base.go View File

@ -1,6 +1,5 @@
package base
/******************************************************************************
*
* @Struct Name : WeekModelLstInsertReq
@ -17,3 +16,20 @@ type WeekModelLstInsertReq struct {
WeekModelNr int `json:"weekModelNr"`
Records []WeekModelLst `json:"records"`
}
/******************************************************************************
*
* @Struct Name : WorkCalendarLstInsertReq
*-----------------------------------------------------------------------------
*
* @Description : WorkCalendarLstInsertReq workCalendarLst 批量插入请求体映射
*
* @Author : 张鑫
*
* @Date : 2021-04-15
*
******************************************************************************/
type WorkCalendarLstInsertReq struct {
WorkCalendarNr int `json:"workCalendarNr"`
Records []WorkCalendarLst `json:"records"`
}

Loading…
Cancel
Save