8 changed files with 81 additions and 0 deletions
@ -0,0 +1,18 @@ |
|||
package com.yxt.anrui.portal.api.sysstaffinfo; |
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/5/20 15:47 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class PcSysStaffQuery implements Query { |
|||
private static final long serialVersionUID = 1858291601540877140L; |
|||
@ApiModelProperty(value = "业务员sid") |
|||
private String staffSid; |
|||
|
|||
} |
@ -0,0 +1,17 @@ |
|||
package com.yxt.anrui.portal.api.sysstaffinfo; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/5/20 15:44 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class PcSysStaffVo implements Vo { |
|||
private static final long serialVersionUID = -9042032921079833819L; |
|||
|
|||
private String staffSid; |
|||
private String staffName; |
|||
} |
Loading…
Reference in new issue