1
This commit is contained in:
36
ruoyi-system/src/main/java/com/ruoyi/erp/domain/Jewelry.java
Normal file
36
ruoyi-system/src/main/java/com/ruoyi/erp/domain/Jewelry.java
Normal file
@@ -0,0 +1,36 @@
|
||||
package com.ruoyi.erp.domain;
|
||||
|
||||
import java.util.List; /**
|
||||
* 珠宝信息
|
||||
*/
|
||||
@lombok.Data
|
||||
public class Jewelry {
|
||||
/**
|
||||
* 颜色
|
||||
*/
|
||||
private String color;
|
||||
/**
|
||||
* 验货图片
|
||||
*/
|
||||
private List<String> images;
|
||||
/**
|
||||
* 检测机构名称
|
||||
*/
|
||||
private String orgName;
|
||||
/**
|
||||
* 验货描述
|
||||
*/
|
||||
private String qcDesc;
|
||||
/**
|
||||
* 验货编码
|
||||
*/
|
||||
private String qcNo;
|
||||
/**
|
||||
* 形状
|
||||
*/
|
||||
private String shape;
|
||||
/**
|
||||
* 重量
|
||||
*/
|
||||
private String weight;
|
||||
}
|
||||
Reference in New Issue
Block a user