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.
40 lines
601 B
Java
40 lines
601 B
Java
11 months ago
|
package com.glxp.api.req.collect;
|
||
|
|
||
|
import com.glxp.api.util.page.ListPageRequest;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.Date;
|
||
|
|
||
|
@Data
|
||
|
public class CollectOrderCodeAutoRequest extends ListPageRequest {
|
||
|
|
||
|
private Integer id;
|
||
|
|
||
|
/**
|
||
|
* 拆零表码ID
|
||
|
*/
|
||
|
private Integer codeIdFk;
|
||
|
|
||
|
/**
|
||
|
* udi码、追溯码
|
||
|
*/
|
||
|
private String udiCode;
|
||
|
|
||
|
/**
|
||
|
* 处方单号/业务单号
|
||
|
*/
|
||
|
private String orderIdFk;
|
||
|
|
||
|
private Date createTime;
|
||
|
|
||
|
private String createUser;
|
||
|
|
||
|
private Date updateTime;
|
||
|
|
||
|
private String updateUser;
|
||
|
|
||
|
private String remark;
|
||
|
|
||
|
|
||
|
}
|