liding
5 天以前 9b0b9f0576ccb9e02202ca4ba23dcbdb3ca5d2e8
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
package com.ruoyi.basic.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@TableName("product_model")
public class ProductModel {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 序号
     */
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /**
     * 关联产品id
     */
    private Long productId;
 
    /**
     * 规格型号
     */
    private String model;
 
    /**
     * 单位
     */
    private String unit;
 
    @ApiModelProperty(value = "租户ID")
    @TableField(fill = FieldFill.INSERT)
    private Integer tenantId;
}