Browse Source

工单master、工单detail取消字段status

liuwj 2 years ago
parent
commit
d084422c4c

+ 0 - 5
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/itdmGongdanDetail/entity/ItdmGongdanDetail.java

@@ -77,11 +77,6 @@ public class ItdmGongdanDetail implements Serializable {
 	@Excel(name = "实绩试验结束时间", width = 15)
     @ApiModelProperty(value = "实绩试验结束时间")
     private java.lang.String shijiEndTime;
-	/**状态*/
-	@Excel(name = "状态", width = 15, dicCode = "test_plan_status")
-	@Dict(dicCode = "test_plan_status")
-    @ApiModelProperty(value = "状态")
-    private java.lang.Integer status;
 	/**备注*/
 	@Excel(name = "备注", width = 15)
     @ApiModelProperty(value = "备注")

+ 0 - 4
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/itdmGongdanMaster/entity/ItdmGongdanMaster.java

@@ -92,10 +92,6 @@ public class ItdmGongdanMaster implements Serializable {
 	@Excel(name = "内容", width = 15)
     @ApiModelProperty(value = "内容")
     private java.lang.String neirong;
-	/**状态*/
-	@Excel(name = "状态", width = 15)
-    @ApiModelProperty(value = "状态")
-    private java.lang.Integer status;
 	/**备注*/
 	@Excel(name = "备注", width = 15)
     @ApiModelProperty(value = "备注")

+ 0 - 12
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/itdmTestPlan/mapper/ItdmTestPlanMapper.java

@@ -1,10 +1,5 @@
 package org.jeecg.modules.itdmTestPlan.mapper;
 
-import java.util.List;
-
-import org.apache.ibatis.annotations.Param;
-import org.apache.ibatis.annotations.Select;
-import org.jeecg.modules.itdmDevice.entity.ItdmDevice;
 import org.jeecg.modules.itdmTestPlan.entity.ItdmTestPlan;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
@@ -15,11 +10,4 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  * @Version: V1.0
  */
 public interface ItdmTestPlanMapper extends BaseMapper<ItdmTestPlan> {
-
-//    @Select("select a.weituo_id, c.weituo_no, a.yangpin_id, d.sample_name, a.id, a.test_items, b.shebei_id, e.device_name, b.pm\n" +
-//            "from itdm_weituo_yangpin_extend a\n" +
-//            "    left join itdm_test_plan b\n" +
-//            "        on a.id = b.test_items_id" )
-//    List<ItdmDevice> queryList();
-
 }