javacodeadmin/ruoyi-system/src/main/java/com/ruoyi/system/domain/QuoteCraft.java

179 lines
3.5 KiB
Java

package com.ruoyi.system.domain;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
/**
* 项目报价--服务工艺对象 quote_craft
*
* @author ruoyi
* @date 2025-05-13
*/
public class QuoteCraft extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
private Long id;
/** 服务 */
@Excel(name = "服务")
private String goodId;
/** 类型 */
@Excel(name = "类型")
private String typeId;
/** 标题 */
@Excel(name = "标题")
private String title;
/** 价格 */
@Excel(name = "价格")
private BigDecimal price;
/** 单位 */
@Excel(name = "单位")
private String unit;
/** 单位 */
@Excel(name = "服务名称")
private String ServiceName;
private List<Long> goodsintids;
private List<Long> typeintids;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private Date createdAt;
/** $column.columnComment */
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
private Date updatedAt;
public void setId(Long id)
{
this.id = id;
}
public Long getId()
{
return id;
}
public void setGoodId(String goodId)
{
this.goodId = goodId;
}
public String getGoodId()
{
return goodId;
}
public void setTypeId(String typeId)
{
this.typeId = typeId;
}
public String getTypeId()
{
return typeId;
}
public void setTitle(String title)
{
this.title = title;
}
public String getTitle()
{
return title;
}
public void setPrice(BigDecimal price)
{
this.price = price;
}
public BigDecimal getPrice()
{
return price;
}
public void setUnit(String unit)
{
this.unit = unit;
}
public String getUnit()
{
return unit;
}
public void setCreatedAt(Date createdAt)
{
this.createdAt = createdAt;
}
public Date getCreatedAt()
{
return createdAt;
}
public void setUpdatedAt(Date updatedAt)
{
this.updatedAt = updatedAt;
}
public Date getUpdatedAt()
{
return updatedAt;
}
public String getServiceName() {
return ServiceName;
}
public void setServiceName(String serviceName) {
ServiceName = serviceName;
}
public List<Long> getGoodsintids() {
return goodsintids;
}
public void setGoodsintids(List<Long> goodsintids) {
this.goodsintids = goodsintids;
}
public List<Long> getTypeintids() {
return typeintids;
}
public void setTypeintids(List<Long> typeintids) {
this.typeintids = typeintids;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("goodId", getGoodId())
.append("typeId", getTypeId())
.append("title", getTitle())
.append("price", getPrice())
.append("unit", getUnit())
.append("createdAt", getCreatedAt())
.append("updatedAt", getUpdatedAt())
.toString();
}
}