You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-third-java/src/main/java/com/glxp/mipsdl/entity/ctqyy/MaterialDictEntity.java

100 lines
1.6 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.glxp.mipsdl.entity.ctqyy;
import lombok.Data;
import java.math.BigDecimal;
@Data
public class MaterialDictEntity {
/**
* 操作类型
* 1新增
* 2修改
* 9作废
*/
private String operatType;
/**
* 物资名称
*/
private String materialName;
/**
* 高值耗材标志
* 1高值0低值
*/
private String costlySign;
/**
* 物资码
* 高值,不能为空
*/
private String materialMasterCode;
/**
* HIS物资编码
* 新增可为空,修改和作废不能为空
*/
private String hisMaterialCode;
/**
* 物资规格
*/
private String materialSpec;
/**
* 物资单位
*/
private String materialUnit;
/**
* 进货价
*/
private String importPrice;
/**
* 零售价
*/
private String retailPrice;
/**
* 生产厂家代码
*/
private String factoryCode;
/**
* 生产厂家名称
*/
private String factoryName;
/**
* 供应商代码
*/
private String supplierCode;
/**
* 供应商名称
*/
private String supplierName;
/**
* 医保编码
*/
private String insuranceCode;
/**
* 注册证件号
*/
private String regeditNo;
/**
* 中标标志
*/
private String publicFlag;
/**
* 价项科目码
*/
private String priceItemClass;
/**
* 收费标志
*/
private String feeFlag;
/**
* 系统返回物资编码
* materialNo
*/
private String materialNo;
private String materialClass;
}