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;
|
|
}
|