| | |
| | | package com.vincent.rsf.openApi.entity.phyz; |
| | | |
| | | import com.alibaba.fastjson.annotation.JSONField; |
| | | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | private String useOrgId; |
| | | // 使用组织名称 |
| | | private String useOrgName; |
| | | // 操作类型,1 新增;2 修改;3禁用;4 反禁用; |
| | | // 操作类型,0:新增、更新、解禁(只要调用了更新,就代表非禁用了) 1:禁用 |
| | | @JSONField(name = "OperateType", alternateNames = {"operateType"}) |
| | | @JsonProperty("operateType") |
| | | private Integer operateType; |
| | | } |