| | |
| | | package com.zt.life.modules.project.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.zt.common.entity.BusiEntity; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper=false) |
| | | @TableName("software_test_order_measured") |
| | | public class SoftwareTestOrderMeasured extends DictList { |
| | | public class SoftwareTestOrderMeasured extends BusiEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty(value = "委托单ID") |
| | |
| | | @ApiModelProperty(value = "是否被测件") |
| | | private String isMeasured; |
| | | |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "是否被测件字符串") |
| | | String isMeasuredStr; |
| | | public SoftwareTestOrderMeasured() { |
| | | } |
| | | } |