| | |
| | | @TableField(value = "attribution_type") |
| | | private Integer attributionType; |
| | | |
| | | //对应文档id |
| | | @Excel(name = "对应文档id", width = 15) |
| | | @TableField(value = "doc_id") |
| | | private String docId; |
| | | |
| | | //对应刀具库id |
| | | @Excel(name = "对应刀具库id", width = 15) |
| | | @TableField(value = "tools_id") |
| | | private String toolsId; |
| | | |
| | | //刀具名称 |
| | | @Excel(name = "刀具名称", width = 15) |
| | | @TableField(value = "cutter_name") |
| | |
| | | @TableField(value = "cutter_code") |
| | | private String cutterCode; |
| | | |
| | | //刀具类型 |
| | | @Excel(name = "刀具类型", width = 15,dicCode = "cutter_type") |
| | | //刀具简称 |
| | | @Excel(name = "刀具简称", width = 15,dicCode = "cutter_type") |
| | | @TableField(value = "cutter_type") |
| | | @Dict(dicCode = "cutter_type") |
| | | private String cutterType; |
| | |
| | | @TableField(value = "quantity") |
| | | private Integer quantity; |
| | | |
| | | //刀具规格 |
| | | @Excel(name = "刀具规格", width = 15) |
| | | @TableField(value = "cutter_spec") |
| | | private String cutterSpec; |
| | | |
| | | //描述 |
| | | @Excel(name = "描述", width = 15) |
| | | @TableField(value = "description") |