| | |
| | | package com.iailab.module.ansteel.api.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | |
| | | public class CokingProcessMainEntity implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId |
| | | @TableId(type = IdType.ASSIGN_UUID) |
| | | private String id; |
| | | |
| | | private String category; |
| | |
| | | |
| | | private String theoryValue; |
| | | |
| | | private String actual_value; |
| | | private String actualValue; |
| | | |
| | | private String stand_value; |
| | | private String standValue; |
| | | |
| | | private String real_value; |
| | | private String realValue; |
| | | |
| | | private Integer sort; |
| | | } |