jinlin
2024-03-12 2d3634a3925d9f4cfc04499ce9f0994c6b12b018
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
package com.zt.life.modules.mainPart.basicInfo.model;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.zt.common.entity.BusiEntity;
import com.zt.common.entity.TreeNode;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * product_model
 *
 * @author zt generator 
 * @since 1.0.0 2024-02-29
 */
@Data
public class ProductImg {
    @TableField(exist = false)
    private String nodeType;
 
    @TableField(exist = false)
    private String imgPath;
    @TableField(exist = false)
    private String imgName;
 
    @TableField(exist = false)
    private String nodeTypeExt;
 
    @TableField(exist = false)
    private int imgWidth;
 
    @TableField(exist = false)
    private int imgHeight;
    @TableField(exist = false)
    private String dataId;
    @TableField(exist = false)
    private String statusImg;
    @TableField(exist = false)
    private String productType;
}