package cn.iocoder.yudao.module.srm.dal.dataobject;
|
|
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
|
import com.baomidou.mybatisplus.annotation.KeySequence;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.*;
|
|
import java.math.BigDecimal;
|
|
@TableName("srm_tender_material")
|
@KeySequence("srm_tender_material_seq")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
@Builder
|
@NoArgsConstructor
|
@AllArgsConstructor
|
public class SrmTenderMaterialDO extends BaseDO {
|
|
@TableId
|
private Long id;
|
|
private Long tenderProjectId;
|
private Long productId;
|
private String productCode;
|
private String productName;
|
private String productSpec;
|
private BigDecimal quantity;
|
private String unit;
|
private String techRequirement;
|
private BigDecimal estimatedPrice;
|
private Integer sort;
|
|
}
|