|
@@ -0,0 +1,144 @@
|
|
|
+package com.cuidian.srm.saleCode.entity;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.io.UnsupportedEncodingException;
|
|
|
+import java.util.Date;
|
|
|
+import java.math.BigDecimal;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
+import org.jeecg.common.constant.ProvinceCityArea;
|
|
|
+import org.jeecg.common.util.SpringContextUtils;
|
|
|
+import lombok.Data;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+import org.jeecg.common.aspect.annotation.Dict;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 招标书(RFP)
|
|
|
+ * @Author: jeecg-boot
|
|
|
+ * @Date: 2024-11-07
|
|
|
+ * @Version: V1.0
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("sale_rfp")
|
|
|
+@Accessors(chain = true)
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@ApiModel(value="sale_rfp对象", description="招标书(RFP)")
|
|
|
+public class SaleRfp implements Serializable {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**主键id*/
|
|
|
+ @TableId(type = IdType.ASSIGN_ID)
|
|
|
+ @ApiModelProperty(value = "主键id")
|
|
|
+ private String id;
|
|
|
+ /**创建人*/
|
|
|
+ @ApiModelProperty(value = "创建人")
|
|
|
+ private String createBy;
|
|
|
+ /**创建时间*/
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
+ private Date createTime;
|
|
|
+ /**更新人*/
|
|
|
+ @ApiModelProperty(value = "更新人")
|
|
|
+ private String updateBy;
|
|
|
+ /**更新时间*/
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "更新时间")
|
|
|
+ private Date updateTime;
|
|
|
+ /**状态(1-启用,0-停用)*/
|
|
|
+ @Excel(name = "状态(1-启用,0-停用)", width = 15)
|
|
|
+ @ApiModelProperty(value = "状态(1-启用,0-停用)")
|
|
|
+ private Integer status;
|
|
|
+ /**删除状态(0-正常,1-已删除)*/
|
|
|
+ @Excel(name = "删除状态(0-正常,1-已删除)", width = 15)
|
|
|
+ @ApiModelProperty(value = "删除状态(0-正常,1-已删除)")
|
|
|
+ @TableLogic
|
|
|
+ private Integer delFlag;
|
|
|
+ /**单据日期*/
|
|
|
+ @Excel(name = "单据日期", width = 15, format = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd")
|
|
|
+ @ApiModelProperty(value = "单据日期")
|
|
|
+ private Date billDate;
|
|
|
+ /**单据编码*/
|
|
|
+ @Excel(name = "单据编码", width = 15)
|
|
|
+ @ApiModelProperty(value = "单据编码")
|
|
|
+ private String billCode;
|
|
|
+ /**项目*/
|
|
|
+ @Excel(name = "项目", width = 15)
|
|
|
+ @ApiModelProperty(value = "项目")
|
|
|
+ private String projectId;
|
|
|
+ /**客户*/
|
|
|
+ @Excel(name = "客户", width = 15)
|
|
|
+ @ApiModelProperty(value = "客户")
|
|
|
+ private String customerId;
|
|
|
+ /**采购方式*/
|
|
|
+ @Excel(name = "采购方式", width = 15)
|
|
|
+ @ApiModelProperty(value = "采购方式")
|
|
|
+ private Integer procurementMethod;
|
|
|
+ /**招标项目号*/
|
|
|
+ @Excel(name = "招标项目号", width = 15)
|
|
|
+ @ApiModelProperty(value = "招标项目号")
|
|
|
+ private String tenderCode;
|
|
|
+ /**招标项目名称*/
|
|
|
+ @Excel(name = "招标项目名称", width = 15)
|
|
|
+ @ApiModelProperty(value = "招标项目名称")
|
|
|
+ private String tenderName;
|
|
|
+ /**包号*/
|
|
|
+ @Excel(name = "包号", width = 15)
|
|
|
+ @ApiModelProperty(value = "包号")
|
|
|
+ private String packetNumber;
|
|
|
+ /**投标时间*/
|
|
|
+ @Excel(name = "投标时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "投标时间")
|
|
|
+ private Date bidTime;
|
|
|
+ /**开标时间*/
|
|
|
+ @Excel(name = "开标时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "开标时间")
|
|
|
+ private Date openingTime;
|
|
|
+ /**项目总价*/
|
|
|
+ @Excel(name = "项目总价", width = 15)
|
|
|
+ @ApiModelProperty(value = "项目总价")
|
|
|
+ private BigDecimal totalMoney;
|
|
|
+ /**投标结果*/
|
|
|
+ @Excel(name = "投标结果", width = 15)
|
|
|
+ @ApiModelProperty(value = "投标结果")
|
|
|
+ private Integer tenderResult;
|
|
|
+ /**中标方*/
|
|
|
+ @Excel(name = "中标方", width = 15)
|
|
|
+ @ApiModelProperty(value = "中标方")
|
|
|
+ private String winningBidder;
|
|
|
+ /**中标价*/
|
|
|
+ @Excel(name = "中标价", width = 15)
|
|
|
+ @ApiModelProperty(value = "中标价")
|
|
|
+ private BigDecimal bidPrice;
|
|
|
+ /**参与家数*/
|
|
|
+ @Excel(name = "参与家数", width = 15)
|
|
|
+ @ApiModelProperty(value = "参与家数")
|
|
|
+ private String households;
|
|
|
+ /**备注*/
|
|
|
+ @Excel(name = "备注", width = 15)
|
|
|
+ @ApiModelProperty(value = "备注")
|
|
|
+ private String notes;
|
|
|
+ /**附件*/
|
|
|
+ @Excel(name = "附件", width = 15)
|
|
|
+ @ApiModelProperty(value = "附件")
|
|
|
+ private String attachs;
|
|
|
+ /**提交(0未提交,1已提交)*/
|
|
|
+ @Excel(name = "提交(0未提交,1已提交)", width = 15)
|
|
|
+ @ApiModelProperty(value = "提交(0未提交,1已提交)")
|
|
|
+ private Integer submit;
|
|
|
+}
|