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.
86 lines
1.2 KiB
Java
86 lines
1.2 KiB
Java
2 years ago
|
package com.glxp.mipsdl.req.ptxhyy;
|
||
|
|
||
|
import lombok.AllArgsConstructor;
|
||
|
import lombok.Builder;
|
||
|
import lombok.Data;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
|
||
|
import java.math.BigDecimal;
|
||
|
import java.time.LocalDate;
|
||
|
import java.time.LocalDateTime;
|
||
|
|
||
|
/**
|
||
|
* 平潭协和医院
|
||
|
*/
|
||
|
@Data
|
||
|
@Builder
|
||
|
@AllArgsConstructor
|
||
|
@NoArgsConstructor
|
||
|
public class PtxhyyOrderDetailRequest {
|
||
|
|
||
|
/**
|
||
|
* 单据序号
|
||
|
*/
|
||
|
// private String djxh;
|
||
|
|
||
|
/**
|
||
|
* 物资序号
|
||
|
*/
|
||
|
private String wzxh;
|
||
|
|
||
|
/**
|
||
|
* 厂家序号
|
||
|
*/
|
||
|
private String cjxh;
|
||
|
|
||
|
/**
|
||
|
* 标准数量单位
|
||
|
*/
|
||
|
private String bzdw;
|
||
|
|
||
|
/**
|
||
|
* 标准数量
|
||
|
*/
|
||
|
private Integer bzsl;
|
||
|
|
||
|
/**
|
||
|
* 单价
|
||
|
*/
|
||
|
private BigDecimal wzjg;
|
||
|
|
||
|
/**
|
||
|
* 零售金额
|
||
|
*/
|
||
|
private BigDecimal lsje;
|
||
|
|
||
|
/**
|
||
|
* 单据日期
|
||
|
*/
|
||
|
private LocalDate djrq;
|
||
|
|
||
|
/**
|
||
|
* UDI追溯码
|
||
|
*/
|
||
|
private String udim;
|
||
|
|
||
|
/**
|
||
|
* 核算分类
|
||
|
*/
|
||
|
private String hsfl;
|
||
|
|
||
|
/**
|
||
|
* 物资批号
|
||
|
*/
|
||
|
private String wzph;
|
||
|
|
||
|
/**
|
||
|
* 发票号码
|
||
|
*/
|
||
|
private String fphm;
|
||
|
|
||
|
/**
|
||
|
* 发票日期
|
||
|
*/
|
||
|
private LocalDateTime fprq;
|
||
|
}
|