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.
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.api.res.thrsys ;
import lombok.Data ;
import java.util.Date ;
@Data
public class ThrInvOrderResponse {
private String billTypeName ;
private String invName ;
private Long id ;
/**
* 单据号
*/
private String billNo ;
/**
* 单据时间
*/
private Date billDate ;
/**
* 库存开始时间
*/
private Date startDate ;
/**
* 库存结束时间
*/
private Date endDate ;
/**
* 出入库类型
*/
private String mainAction ;
/**
* 第三方单据类型
*/
private String billType ;
/**
* 外部系统
*/
private String thirdSysFk ;
/**
* 部门编码
*/
private String deptCode ;
/**
* 仓库编码
*/
private String invCode ;
/**
* 货位编码
*/
private String spaceCode ;
/**
* 单据状态
*/
private Integer status ;
/**
* 创建时间
*/
private Date createTime ;
/**
* 创建人
*/
private String createUser ;
/**
* 更新时间
*/
private Date updateTime ;
/**
* 更新人
*/
private String updateUser ;
/**
* 备注
*/
private String remark ;
/**
* 来源类型, 1收费, 2普耗, 3高耗
*/
private Integer sourceType ;
/**
* 异常信息
*/
private String exMsg ;
/**
* 是否组套
*/
private Integer skProject ;
/**
* 往来单位
*/
private String fromCorp ;
/**
* 生成单据号
*/
private String toBillNo ;
/**
* 患者编码
*/
private String sickerCode ;
/**
* 患者名称
*/
private String sickerName ;
/**
* 收费时间
*/
private Date chargeTime ;
/**
* 收费人员
*/
private String chargeUser ;
}