- /*
- * @description:
- * @Author: CP
- * @Date: 2021-04-02 09:39:22
- * @FilePath: \design_quantity\web\viewmodels\upload.go
- */
- package viewmodels
- type Upload struct {
- Id string `form:"id" json:"id"`
- Name string `form:"name" json:"name"`
- Path string `form:"path" json:"path"`
- TreeId string `form:"treeId" json:"treeId"`
- }
|