Files
OpticalSystem/jy-system/src/main/java/com/ruoyi/jysystem/domain/JySysOrderOptometry.java
一休哥哥6666 e186d45bec Initial commit
2026-06-14 14:39:51 +08:00

219 lines
4.1 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ruoyi.jysystem.domain;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* 订单验光对象 jy_sys_order_optometry
*
* @author ruoyi
*/
public class JySysOrderOptometry
{
private static final long serialVersionUID = 1L;
private Long id;
private Long orderId;
/** 左右区分OS左眼 OD右眼 */
private String eyeSide;
/** 球镜S */
private BigDecimal sphereS;
/** 柱镜C */
private BigDecimal cylinderC;
/** 轴位A */
private Integer axisA;
/** 单瞳距 */
private BigDecimal pd;
/** 双瞳距按eye_side区分左右 */
private BigDecimal dualPd;
/** 瞳距类型1单瞳距 2双瞳距 */
private String pdType;
/** 瞳高 */
private BigDecimal pupilHeight;
/** 远用VA */
private String distanceVa;
/** 近用ADD */
private BigDecimal nearAdd;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date updateTime;
public Long getId()
{
return id;
}
public void setId(Long id)
{
this.id = id;
}
public Long getOrderId()
{
return orderId;
}
public void setOrderId(Long orderId)
{
this.orderId = orderId;
}
public String getEyeSide()
{
return eyeSide;
}
public void setEyeSide(String eyeSide)
{
this.eyeSide = eyeSide;
}
public BigDecimal getSphereS()
{
return sphereS;
}
public void setSphereS(BigDecimal sphereS)
{
this.sphereS = sphereS;
}
public BigDecimal getCylinderC()
{
return cylinderC;
}
public void setCylinderC(BigDecimal cylinderC)
{
this.cylinderC = cylinderC;
}
public Integer getAxisA()
{
return axisA;
}
public void setAxisA(Integer axisA)
{
this.axisA = axisA;
}
public BigDecimal getPd()
{
return pd;
}
public void setPd(BigDecimal pd)
{
this.pd = pd;
}
public BigDecimal getDualPd()
{
return dualPd;
}
public void setDualPd(BigDecimal dualPd)
{
this.dualPd = dualPd;
}
public String getPdType()
{
return pdType;
}
public void setPdType(String pdType)
{
this.pdType = pdType;
}
public BigDecimal getPupilHeight()
{
return pupilHeight;
}
public void setPupilHeight(BigDecimal pupilHeight)
{
this.pupilHeight = pupilHeight;
}
public String getDistanceVa()
{
return distanceVa;
}
public void setDistanceVa(String distanceVa)
{
this.distanceVa = distanceVa;
}
public BigDecimal getNearAdd()
{
return nearAdd;
}
public void setNearAdd(BigDecimal nearAdd)
{
this.nearAdd = nearAdd;
}
public Date getCreateTime()
{
return createTime;
}
public void setCreateTime(Date createTime)
{
this.createTime = createTime;
}
public Date getUpdateTime()
{
return updateTime;
}
public void setUpdateTime(Date updateTime)
{
this.updateTime = updateTime;
}
@Override
public String toString()
{
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("orderId", getOrderId())
.append("eyeSide", getEyeSide())
.append("sphereS", getSphereS())
.append("cylinderC", getCylinderC())
.append("axisA", getAxisA())
.append("pd", getPd())
.append("dualPd", getDualPd())
.append("pdType", getPdType())
.append("pupilHeight", getPupilHeight())
.append("distanceVa", getDistanceVa())
.append("nearAdd", getNearAdd())
.append("createTime", getCreateTime())
.append("updateTime", getUpdateTime())
.toString();
}
}