|
@@ -1,5 +1,7 @@
|
|
|
package com.github.zuihou.business.productionReadyCenter.dto;
|
|
|
|
|
|
+import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.github.zuihou.model.RemoteData;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@@ -11,6 +13,8 @@ import javax.validation.constraints.NotEmpty;
|
|
|
import java.io.Serializable;
|
|
|
import java.util.List;
|
|
|
|
|
|
+import static com.baomidou.mybatisplus.annotation.SqlCondition.LIKE;
|
|
|
+
|
|
|
/**
|
|
|
* <p>
|
|
|
* 实体类
|
|
@@ -74,7 +78,7 @@ public class MToolClampSaveDTO implements Serializable {
|
|
|
* 物料类型(10-原料 20-成品)
|
|
|
*/
|
|
|
@ApiModelProperty(value = "物料类型(10-原料 20-成品)")
|
|
|
- private RemoteData<String, String> materialType;
|
|
|
+ private String materialType;
|
|
|
|
|
|
@ApiModelProperty(value = "图号")
|
|
|
@Length(max = 255, message = "图号长度不能超过255")
|
|
@@ -96,4 +100,7 @@ public class MToolClampSaveDTO implements Serializable {
|
|
|
@ApiModelProperty(value = "同步状态 0:未同步 1:已同步")
|
|
|
private Integer synFlag;
|
|
|
|
|
|
+ @ApiModelProperty(value = "生产分厂")
|
|
|
+ private String factory;
|
|
|
+
|
|
|
}
|