| | |
| | | /**申请单编码*/ |
| | | @Excel(name = "申请单编码", width = 15) |
| | | @ApiModelProperty(value = "申请单编码") |
| | | private String num; |
| | | private java.lang.String num; |
| | | |
| | | /**仓库id*/ |
| | | @Dict(dictTable = "mom_base_warehouse", dicCode = "id", dicText = "name") |
| | |
| | | @Excel(name = "出库人员id", width = 15) |
| | | @ApiModelProperty(value = "出库人员id") |
| | | @Dict(dictTable = "sys_user", dicCode = "id", dicText = "realname") |
| | | private String outboundPersonId; |
| | | private java.lang.String outboundPersonId; |
| | | /**出库部门ID*/ |
| | | @Excel(name = "出库部门ID", width = 15) |
| | | @ApiModelProperty(value = "出库部门ID") |
| | | @Dict(dictTable = "sys_depart", dicCode = "id", dicText = "depart_name") |
| | | private String departId; |
| | | private java.lang.String departId; |
| | | /**出库类型*/ |
| | | @Excel(name = "出库类型", width = 15) |
| | | @ApiModelProperty(value = "出库类型") |
| | | private String type; |
| | | private java.lang.String type; |
| | | /**状态(0已创建,1已提交,2已通过,3已驳回,4已完成)*/ |
| | | @Excel(name = "状态(0已创建,1已提交,2已通过,3已驳回,4已完成)", width = 15) |
| | | @ApiModelProperty(value = "状态(0已创建,1已提交,2已通过,3已驳回,4已完成)") |
| | | @Dict(dicCode = "purchase_storage_status") |
| | | private String status; |
| | | private java.lang.String status; |
| | | |
| | | /**删除状态(0-正常,1-已删除)*/ |
| | | @Excel(name = "删除状态(0-正常,1-已删除)", width = 15) |
| | | @ApiModelProperty(value = "删除状态(0-正常,1-已删除)") |
| | | private Integer delFlag = CommonConstant.DEL_FLAG_0; |
| | | private java.lang.Integer delFlag = CommonConstant.DEL_FLAG_0; |
| | | |
| | | |
| | | @Excel(name = "审批意见", width = 15) |