package com.doumee.core.erp.model.openapi.request.erp; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * @author 江蹄蹄 * @date 2023/11/23 14:03 */ @Data @ApiModel("组织信息同步接口请求信息") public class OrgListRequest { @ApiModelProperty(value = "组织唯一标识(ERP端ID)" ,example = "1") private Integer id; @ApiModelProperty(value = "父级组织唯一标识(ERP端ID)" ,example = "1") private Integer orgParentId; @ApiModelProperty(value = "组织名称,支持模糊查询" ) private String name; @ApiModelProperty(value = "时间范围-开始,格式yyyy-MM-dd HH:mm:ss,如2023-11-24 09:17:11" ) private String startTime ; @ApiModelProperty(value = "时间范围-截止,格式yyyy-MM-dd HH:mm:ss,如2023-11-24 09:17:11" ) private String endTime ; }