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.mipsdl.req.base ;
import lombok.Data ;
import java.math.BigDecimal ;
import java.util.Date ;
@Data
public class UdiwmsBasicSkPrescribeRequest extends ListPageRequest {
/**
*
*/
private Integer id ;
/**
* 处方编码
*/
private String code ;
/**
* 病人编码
*/
private String sickerCode ;
/**
* 开方时间
*/
private Date prescribeDate ;
/**
* 开方医生
*/
private String createDr ;
/**
* 处方费用
*/
private BigDecimal amount ;
/**
* 就诊科室编码
*/
private String deptCode ;
/**
* 就诊科室名称
*/
private String deptName ;
/**
* 诊断内容
*/
private String diagnosis ;
/**
* 备注
*/
private String remark ;
/**
* 创建人
*/
private String createUser ;
/**
* 创建时间
*/
private Date createTime ;
/**
* 更新人
*/
private String updateUser ;
/**
* 更新时间
*/
private Date updateTime ;
/**
*
*/
private String adNum ;
/**
* 就诊卡号
*/
private String clinicNumber ;
/**
* 处方赋码状态 1:未赋码; 2: 赋码中; 3: 已赋码
*/
private Byte tagStatus ;
/**
* 处方下载转换状态 1:未转换; 2: 部分转换; 3: 已转换
*/
private Byte trDiStatus ;
/**
* 处方赋码错误信息
*/
private String tagMsg ;
/**
* 工位
*/
private String workPlaceCode ;
/**
*
*/
private String addr ;
private String stooutNo ;
}