refactor🎨: 岗位删除修改为data传值方式

This commit is contained in:
zhangwenjian
2021-06-20 00:13:17 +08:00
parent 37fe63126c
commit 636294b6f5
4 changed files with 13 additions and 14 deletions
+7 -7
View File
@@ -24,12 +24,12 @@ func (m *SysPostSearch) GetNeedSearch() interface{} {
// SysPostControl 增、改使用的结构体
type SysPostControl struct {
PostId int `uri:"id" comment:"id"` // id
PostName string `form:"postName" comment:"名称"` // 名称
PostCode string `form:"postCode" comment:"编码"` // 编码
Sort int `form:"sort" comment:"排序"` // 排序
Status int `form:"status" comment:"状态"` // 状态
Remark string `form:"remark" comment:"备注"` // 备注
PostId int `uri:"id" comment:"id"`
PostName string `form:"postName" comment:"名称"`
PostCode string `form:"postCode" comment:"编码"`
Sort int `form:"sort" comment:"排序"`
Status int `form:"status" comment:"状态"`
Remark string `form:"remark" comment:"备注"`
common.ControlBy
}
@@ -82,4 +82,4 @@ func (s *SysPostById) GetId() interface{} {
func (s *SysPostById) GenerateM() (*models.SysPost, error) {
return &models.SysPost{}, nil
}
}