|
@@ -1,6 +1,8 @@
|
|
|
package com.github.zuihou.tenant.dto;
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
+
|
|
|
+import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
@@ -23,6 +25,8 @@ import lombok.experimental.Accessors;
|
|
|
import com.github.zuihou.common.constant.DictionaryType;
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
+import static com.baomidou.mybatisplus.annotation.SqlCondition.LIKE;
|
|
|
+
|
|
|
/**
|
|
|
* <p>
|
|
|
* 实体类
|
|
@@ -101,6 +105,63 @@ public class ProductionresourcePageDTO implements Serializable {
|
|
|
@ApiModelProperty(value = "状态(1-启用0-停用)")
|
|
|
@Length(max = 4, message = "状态(1-启用0-停用)长度不能超过4")
|
|
|
private String status;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 资产编号
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "资产编号")
|
|
|
+ @Length(max = 32, message = "资产编号长度不能超过32")
|
|
|
+ private String capitalNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 资产名称
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "资产名称")
|
|
|
+ @Length(max = 256, message = "资产名称长度不能超过256")
|
|
|
+ private String capitalName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 资产类别
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "资产类别")
|
|
|
+ @Length(max = 10, message = "资产类别长度不能超过10")
|
|
|
+ private String capitalType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 型号规格
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "型号规格")
|
|
|
+ @Length(max = 256, message = "型号规格长度不能超过256")
|
|
|
+ private String modeSpecification;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 资产原值
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "资产原值")
|
|
|
+ @Length(max = 256, message = "资产原值长度不能超过256")
|
|
|
+ private String capitalPrice;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 出厂年月
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "出厂年月")
|
|
|
+ @Length(max = 256, message = "出厂年月长度不能超过256")
|
|
|
+ private String productionDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 出厂编号
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "出厂编号")
|
|
|
+ @Length(max = 256, message = "出厂编号长度不能超过256")
|
|
|
+ private String productionNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 制造厂家
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "制造厂家")
|
|
|
+ @Length(max = 256, message = "出厂编号长度不能超过256")
|
|
|
+ private String manufacturer;
|
|
|
+
|
|
|
/**
|
|
|
* 备注
|
|
|
*/
|