package com.ycl.platform.domain.query; import com.ycl.platform.base.AbsQuery; import io.swagger.annotations.ApiModel; import lombok.Data; import lombok.experimental.Accessors; /** * 运维人员查询 * * @author xp * @since 2024-03-04 */ @Data @Accessors(chain = true) @ApiModel(value = "YwPeople查询", description = "运维人员查询") public class YwPeopleQuery extends AbsQuery { /** * 运维人员编码 */ private String ywPersonCode; /** * 运维人员姓名 */ private String ywPersonName; /** * 所属运维单位 */ private Integer belongUnit; }