ny
23 小时以前 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
37
38
39
40
41
42
43
44
45
package jnpf.portal.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.v3.oas.annotations.media.Schema;
import jnpf.base.entity.SuperEntity;
import lombok.Data;
 
import java.io.Serializable;
 
 
/**
 * <p>
 *
 * </p>
 *
 * @author YanYu
 * @since 2023-04-19
 */
@Data
@TableName("base_portal_data")
@Schema(description = "PortalData对象")
public class PortalDataEntity extends SuperEntity<String> implements Serializable {
 
    @Schema(description = "门户ID")
    @TableField("F_PORTAL_ID")
    private String portalId;
 
    @Schema(description = "PC:网页端 APP:手机端")
    @TableField("F_PLATFORM")
    private String platform;
 
    @Schema(description = "表单配置JSON")
    @TableField("F_FORM_DATA")
    private String formData;
 
    @Schema(description = "系统ID")
    @TableField("F_SYSTEM_ID")
    private String systemId;
 
    @Schema(description = "类型(mod:模型、custom:自定义)")
    @TableField("F_TYPE")
    private String type;
 
}