| package com.doumee.core.erp.model.openapi.request; | 
|   | 
| import com.doumee.core.haikang.model.param.BaseRequst; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
|   | 
| /** | 
|  * @author 江蹄蹄 | 
|  * @date 2023/11/23 14:03 | 
|  */ | 
| @Data | 
| @ApiModel("组织信息更新请求信息") | 
| public class OrgUpdateRequest extends BaseRequst { | 
|     @ApiModelProperty(value = "唯一标识" ,required = true) | 
|     private String id; | 
|     @ApiModelProperty(value = "名称" ,required = true) | 
|     private String name; | 
|     @ApiModelProperty(value = "上级组织编码") | 
|     private String parentId; | 
|     @ApiModelProperty(value = "是否已删除 0未删除 1已删除",example = "0") | 
|     private int isdeleted  ; | 
|     @ApiModelProperty(value = "状态 0启用 1禁用",example = "0") | 
|     private int status  ; | 
|     @ApiModelProperty(value = "更新时间,如2023-11-24 09:47:36") | 
|     private Date editDate; | 
|     @ApiModelProperty(value = "联系人姓名" ) | 
|     private String linkName; | 
|     @ApiModelProperty(value = "联系电话" ) | 
|     private String linkPhone; | 
|   | 
| } |