2024-12-07 11:24:55 +08:00

51 lines
1.1 KiB
Java

package tech.riemann.ims.dto.response;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import tech.riemann.ims.enums.ApplyTypeEnum;
/**
* @author mayong
* @since 2024/12/6 21:21
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class ApplyDTO {
@Schema(description = "申请类型")
private ApplyTypeEnum applyType;
@Schema(description = "物料名称")
private String name;
@Schema(description = "物料编码")
private String code;
@Schema(description = "物料类型")
private String type;
@Schema(description = "物料规格")
private String spec;
@Schema(description = "申请人")
private String applicant;
@Schema(description = "申请日期")
private String applyDate;
@Schema(description = "申请数量")
private String applyNum;
@Schema(description = "确认数量")
private String confirmNum;
@Schema(description = "备注")
private String remark;
}