38 lines
726 B
Plaintext
38 lines
726 B
Plaintext
package com.cmeim.basic.vo;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
|
|
import javax.persistence.Column;
|
|
|
|
/**
|
|
* @ClassName BaBomComponentAlternateVo
|
|
* @Description
|
|
* @Author LDJ
|
|
* @Date 2023/4/26 15:08 星期三
|
|
* @Version 1.0
|
|
*/
|
|
@AllArgsConstructor
|
|
@Data
|
|
public class BaBomComponentAlternateVo {
|
|
|
|
/**
|
|
* 替代料编码
|
|
*/
|
|
@ApiParam(value = "替代料编码")
|
|
private String alternateMaterialCode;
|
|
|
|
/**
|
|
* 替代料名称
|
|
*/
|
|
@ApiParam(value = "替代料名称")
|
|
private String alternateMaterialName;
|
|
|
|
/**
|
|
* 替代料规格
|
|
*/
|
|
@ApiParam(value = "替代料规格")
|
|
private String alternateMaterialSpec;
|
|
}
|