
4 changed files with 26 additions and 5 deletions
@ -0,0 +1,21 @@ |
|||
package com.yxt.anrui.terminal.api.base.common; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonProperty; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2024/4/29 |
|||
**/ |
|||
@Data |
|||
public class SystemVo2 { |
|||
|
|||
@ApiModelProperty("部门sid") |
|||
@JsonProperty("dictKey") |
|||
private String deptSid; |
|||
@ApiModelProperty("采购系统名称") |
|||
@JsonProperty("dictValue") |
|||
private String purchaseSystemName; |
|||
} |
Loading…
Reference in new issue