刘光辉
13 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package jnpf.base.model.share;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 跨应用单Vo
 *
 * @author JNPF开发平台组
 * @version v6.1.0
 * @copyright 引迈信息技术有限公司
 * @date 2025-07-30
 */
@Data
@Schema(description = "跨应用单详情")
public class SystemShareVo implements Serializable {
    @Schema(description = "id")
    private String id;
 
    @Schema(description = "来源系统id")
    private String sourceId;
 
    @Schema(description = "对象主键")
    private String objectId;
 
    @Schema(description = "来源系统名称")
    private String sourceName;
 
    @Schema(description = "对象名称(功能名称)")
    private String objectName;
 
    @Schema(description = "回显名称")
    private String showName;
}