用印
This commit is contained in:
50
klp-wms/src/main/java/com/klp/domain/vo/WmsSealReqVo.java
Normal file
50
klp-wms/src/main/java/com/klp/domain/vo/WmsSealReqVo.java
Normal file
@@ -0,0 +1,50 @@
|
||||
package com.klp.domain.vo;
|
||||
|
||||
import com.klp.common.annotation.Excel;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 用印申请 VO
|
||||
*/
|
||||
@Data
|
||||
public class WmsSealReqVo implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Excel(name = "业务ID")
|
||||
private Long bizId;
|
||||
|
||||
@Excel(name = "申请人ID")
|
||||
private Long empId;
|
||||
|
||||
@Excel(name = "用印类型")
|
||||
private String sealType;
|
||||
|
||||
@Excel(name = "用途说明")
|
||||
private String purpose;
|
||||
|
||||
@Excel(name = "申请材料附件ID列表")
|
||||
private String applyFileIds;
|
||||
|
||||
@Excel(name = "是否需要回执")
|
||||
private Integer receiptRequired;
|
||||
|
||||
@Excel(name = "回执状态")
|
||||
private String receiptStatus;
|
||||
|
||||
@Excel(name = "回执附件ID列表")
|
||||
private String receiptFileIds;
|
||||
|
||||
@Excel(name = "状态")
|
||||
private String status;
|
||||
|
||||
@Excel(name = "备注")
|
||||
private String remark;
|
||||
|
||||
private String createBy;
|
||||
private Date createTime;
|
||||
private String updateBy;
|
||||
private Date updateTime;
|
||||
}
|
||||
Reference in New Issue
Block a user