summaryrefslogtreecommitdiff
path: root/src/main/java/com/nis/entity/AssetModel.java
blob: c5490240dcaa54d174f01680180fb2d934acda4d (plain)
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
46
47
48
49
50
51
52
53
package com.nis.entity;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;

import lombok.Data;

import java.io.Serializable;
import java.util.List;



@Data
@TableName("asset_model")
public class AssetModel implements Serializable {
    private static final long serialVersionUID = 1L;

    /**
     * 主键
     */
    @TableId(type = IdType.INPUT)
    private Integer id;

    /**
     * 品牌id
     */
    private Integer brandId;

    /**
     * 名称
     */
    private String name;

    /**
     * 备注
     */
    private String remark;

    /**
     * 导入seq
     */
    private String seq;

    /**
     * u位大小
     */
    private Integer usize;
  
    private String chartIds;
    
}