add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
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
package com.iotechn.unimall.data.domain;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.dobbinsoft.fw.core.annotation.doc.ApiEntity;
import com.dobbinsoft.fw.core.annotation.doc.ApiField;
import com.dobbinsoft.fw.support.domain.SuperDO;
import com.iotechn.unimall.data.enums.BizType;
import lombok.Data;
 
/**
 * Created by rize on 2019/2/13.
 */
@Data
@ApiEntity(description = "图片表")
@TableName("unimall_img")
public class ImgDO extends SuperDO {
 
    @ApiField(description = "图片关联类型", enums = BizType.class)
    private Integer bizType;
 
    @ApiField(description = "图片关联ID")
    private Long bizId;
 
    private String url;
 
}