You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-java/src/main/java/com/glxp/api/entity/purchase/PurInquiryOfferItemDetailEn...

135 lines
3.3 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.glxp.api.entity.purchase;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* 询价业务明细详情表
*/
@ApiModel(description="询价报价业务明细详情表")
@Data
@TableName(value = "pur_inquiry_offer_item_detail")
public class PurInquiryOfferItemDetailEntity implements Serializable {
/**
* ID
*/
@TableId(value = "id", type = IdType.INPUT)
@ApiModelProperty(value="ID")
private Long id;
/**
* 关联询价编号
*/
@TableField(value = "orderIdFk")
@ApiModelProperty(value="关联询价编号")
private String orderIdFk;
/**
* 关联询明细价id
*/
@TableField(value = "orderItemIdFk")
@ApiModelProperty(value="关联询明细价id")
private String orderItemIdFk;
/**
* 供应商报价第几次
*/
@TableField(value = "supNumber")
@ApiModelProperty(value="供应商报价第几次")
private Integer supNumber;
/**
* 供应商id
*/
@TableField(value = "supId")
@ApiModelProperty(value="供应商id")
private Long supId;
/**
* 供应商名称
*/
@TableField(value = "supName")
@ApiModelProperty(value="供应商名称")
private String supName;
/**
* 供应商联系人姓名
*/
@TableField(value = "supPerson")
@ApiModelProperty(value="供应商联系人姓名")
private String supPerson;
/**
* 供应商联系人电话
*/
@TableField(value = "supPhone")
@ApiModelProperty(value="供应商联系人电话")
private String supPhone;
/**
* 供应商联系人电子邮件
*/
@TableField(value = "supEmail")
@ApiModelProperty(value="供应商联系人电子邮件")
private String supEmail;
/**
* 供应商附件的路径或URL
*/
@TableField(value = "supFilePath")
@ApiModelProperty(value="供应商附件的路径或URL")
private String supFilePath;
/**
* 供应商报价数量
*/
@TableField(value = "supCount")
@ApiModelProperty(value="供应商报价数量")
private Integer supCount;
/**
* 供应商报价单价
*/
@TableField(value = "supPrice")
@ApiModelProperty(value="供应商报价单价")
private BigDecimal supPrice;
/**
* 供应商报价总价
*/
@TableField(value = "supTotalPrice")
@ApiModelProperty(value="供应商报价总价")
private BigDecimal supTotalPrice;
/**
* 说明
*/
@TableField(value = "supRemark")
@ApiModelProperty(value="说明")
private String supRemark;
/**
* 是否符合 1 符合 0 不符合
*/
@TableField(value = "accord")
@ApiModelProperty(value="是否符合 1 符合 0 不符合")
private Integer accord;
/**
* 是否采纳 1 采纳 0 不采纳
*/
@TableField(value = "adopt")
@ApiModelProperty(value="是否采纳 1 采纳 0 不采纳")
private Integer adopt;
private static final long serialVersionUID = 1L;
}