ZKBH
2 天以前 25a0ff7d2398f5b11b85549097cd20446e51f0ce
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
package org.jeecg.modules.mdc.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
@Data
@TableName("mdc_equipment_magnification")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "mdc_equipment_magnification对象", description = "倍率统计")
public class MdcEquipmentMagnification implements Serializable {
    private static final long serialVersionUID = 4440281782659062056L;
 
    /**
     * 主键
     */
    private String id;
    private String equipmentId;
    //主轴倍率   值和
    private BigDecimal spindlebeilvValue;
    //主轴倍率 数量
    private Integer spindlebeilvNumber;
    //主轴倍率   数量
    private BigDecimal feedbeilvValue;
    //进给倍率   数量
    private Integer feedbeilvNumber;
    //  主轴倍率平均值
    private BigDecimal spindlebeilv = new BigDecimal(0);
    //进给倍率平均值
    private BigDecimal feedbeilv = new BigDecimal(0);
    //有效日期
    @ApiModelProperty(value = "有效日期")
    private String theDate;
    //创建时间
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
 
}