You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.1 KiB
57 lines
1.1 KiB
package com.spring.modules.quote.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
@TableName("plm_quote_detail_other")
|
|
@Data
|
|
public class QuoteDetailOther {
|
|
|
|
@TableId
|
|
private Long id;
|
|
|
|
private Long quoteDetailId;
|
|
|
|
private Long quoteId;
|
|
|
|
private String quoteNo;
|
|
|
|
private String site;
|
|
|
|
private String buNo;
|
|
|
|
private String versionNo;
|
|
|
|
private Integer quoteDetailItemNo;
|
|
|
|
private Integer itemNo;
|
|
|
|
private String otherDesc;
|
|
|
|
private BigDecimal otherQty;
|
|
|
|
private BigDecimal unitCost;
|
|
|
|
private BigDecimal markup;
|
|
|
|
private BigDecimal quoteOtherCost;
|
|
|
|
private String remark;
|
|
|
|
private String createBy;
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
private Date createDate;
|
|
|
|
private String updateBy;
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
|
private Date updateDate;
|
|
}
|