ErpSettlementItem.java 3.6 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 com.skua.core.aspect.annotation.Dict;
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;

/**
 * 药剂结算单详情
 */
@Data
@TableName("erp_settlement_item")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="erp_settlement_item对象", description="药剂结算单详情")
public class ErpSettlementItem {

	/**主键*/
	@TableId(type = IdType.ID_WORKER_STR)
    @ApiModelProperty(value = "主键")
	private String id;

	@ApiModelProperty(value = "药剂入库单编号")
	private String materialInId;
	/**结算单编号*/
	@Excel(name = "结算单编号", width = 15)
    @ApiModelProperty(value = "结算单编号")
	private String settlementId;
	/**物料类别编号*/
	@Excel(name = "物料类别编号", width = 15)
    @ApiModelProperty(value = "物料类别编号")
	@Dict(dictTable = "equipment_sparepart_type", dicCode="id", dicText = "item_text")
	private String sparepartType;
	/**物料编号*/
	@Excel(name = "物料编号", width = 15)
    @ApiModelProperty(value = "物料编号")
	@Dict(dictTable = "equipment_sparepart_supplies", dicCode="id", dicText = "sparepart_name")
	private String sparepartId;
	/**物料名称*/
	@Excel(name = "物料名称", width = 15)
    @ApiModelProperty(value = "物料名称")
	private String sparepartName;
	/**物料编码*/
	@Excel(name = "物料编码", width = 15)
    @ApiModelProperty(value = "物料编码")
	private String sparepartCode;
	/**货号*/
	@Excel(name = "货号", width = 15)
    @ApiModelProperty(value = "货号")
	private String goodCode;
	/**规格型号*/
	@Excel(name = "规格型号", width = 15)
    @ApiModelProperty(value = "规格型号")
	private String specification;
	/**计量单位*/
	@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 unitPrice;
	/**总价*/
	@Excel(name = "总价", width = 15)
    @ApiModelProperty(value = "总价")
	private String totalPrice;
	/**税额*/
	@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 arriveTime;
	/**备注*/
	@Excel(name = "备注", width = 15)
    @ApiModelProperty(value = "备注")
	private String remark;
	/**删除标识,0:有效,1:删除*/
	@Excel(name = "删除标识,0:有效,1:删除", width = 15)
    @ApiModelProperty(value = "删除标识,0:有效,1:删除")
	private Integer delFlag;

	/**采购合同*/
	@ApiModelProperty(value = "采购合同")
	private String purchaseContractId;
	/**分销合同*/

	@ApiModelProperty(value = "分销合同")
	private String distributContractId;



}