DistributMaterial.java 2.5 KB
package com.skua.modules.erp.entity;

import java.io.Serializable;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;

/**
 * erp分销物料
 */
@Data
@TableName("erp_distribut_material")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="erp_distribut_material对象", description="erp分销物料")
public class DistributMaterial {
	/**主键*/
	@TableId(type = IdType.UUID)
    @ApiModelProperty(value = "主键")
	private String id;

	/**部门编号冗余*/
	private String departId;

	/**分销合同编号*/
	@Excel(name = "分销合同编号", width = 15)
    @ApiModelProperty(value = "分销合同编号")
	private String contractId;

	@ApiModelProperty(value = "统购合同编号")
	private String purchaseContractId;

	@ApiModelProperty(value = "物料编号")
	private String sparepartId;

	/**物料名称*/
	@Excel(name = "物料名称", width = 15)
    @ApiModelProperty(value = "物料名称")
	private String sparepartName;
	/**货号*/
	@Excel(name = "货号", width = 15)
    @ApiModelProperty(value = "货号")
	private String goodCode;
	/**计量单位*/
	@Excel(name = "计量单位", width = 15)
    @ApiModelProperty(value = "计量单位")
	private String measuringUnit;
	/**物料数量*/
	@Excel(name = "物料数量", width = 15)
    @ApiModelProperty(value = "物料数量")
	private String materialNum;
	/**单价*/
	@Excel(name = "分销单价", width = 15)
    @ApiModelProperty(value = "分销单价")
	private String distributPrice;
	/**总价*/
	@Excel(name = "分销总价", width = 15)
    @ApiModelProperty(value = "分销总价")
	private String distributTotalPrice;

	/**税额*/
	@Excel(name = "税额", width = 15)
	@ApiModelProperty(value = "税额")
	private String taxAmount;
	/**价税合计*/
	@Excel(name = "价税合计", width = 15)
	@ApiModelProperty(value = "价税合计")
	private String totalPriceTax;
	/**备注*/
	@Excel(name = "备注", width = 15)
    @ApiModelProperty(value = "备注")
	private String remarks;
}