parent
abc1f657f9
commit
300f456e97
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,59 +0,0 @@ |
||||
package digital.laboratory.platform.reagent.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import digital.laboratory.platform.common.mybatis.base.BaseEntity; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import java.io.Serializable; |
||||
import java.time.LocalDateTime; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
|
||||
/** |
||||
* 服务商/供应商响应、资质和售后情况 |
||||
* |
||||
* @author Zhang Xiaolong created at 2023-03-10 14:25:06 |
||||
* @describe 服务商/供应商响应、资质和售后情况 实体类 |
||||
*/ |
||||
@Data |
||||
@TableName(value = "after_sale_situation", autoResultMap = true) |
||||
@EqualsAndHashCode(callSuper = true) |
||||
@ApiModel(value = "服务商/供应商响应、资质和售后情况") |
||||
public class AfterSaleSituation extends BaseEntity { |
||||
|
||||
/** |
||||
* (服务商/供应商评价表ID) |
||||
*/ |
||||
@ApiModelProperty(value="(服务商/供应商评价表ID)") |
||||
private String evaluationFormId; |
||||
|
||||
/** |
||||
* (供应商营业执照) |
||||
*/ |
||||
@ApiModelProperty(value="(供应商营业执照)") |
||||
private String supplierBusinessLicense; |
||||
|
||||
/** |
||||
* (供应商通过质量保证体系) |
||||
*/ |
||||
@ApiModelProperty(value="(供应商通过质量保证体系)") |
||||
private String supplierPassesQualityAssuranceSystem; |
||||
|
||||
/** |
||||
* (供应商产品认证) |
||||
*/ |
||||
@ApiModelProperty(value="(供应商产品认证)") |
||||
private String supplierProductCertification; |
||||
|
||||
/** |
||||
* afterSaleSituationId |
||||
*/ |
||||
@TableId(value = "after_sale_situation_id", type = IdType.ASSIGN_UUID) |
||||
@ApiModelProperty(value="afterSaleSituationId") |
||||
private String afterSaleSituationId; |
||||
|
||||
|
||||
} |
@ -1,81 +0,0 @@ |
||||
package digital.laboratory.platform.reagent.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import digital.laboratory.platform.common.mybatis.base.BaseEntity; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import java.io.Serializable; |
||||
import java.time.LocalDateTime; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
|
||||
/** |
||||
* (服务商/供应商评价结果) |
||||
* |
||||
* @author Zhang Xiaolong created at 2023-03-10 14:25:06 |
||||
* @describe (服务商/供应商评价结果) 实体类 |
||||
*/ |
||||
@Data |
||||
@TableName(value = "evaluation_result", autoResultMap = true) |
||||
@EqualsAndHashCode(callSuper = true) |
||||
@ApiModel(value = "(服务商/供应商评价结果)") |
||||
public class EvaluationResult extends BaseEntity { |
||||
|
||||
/** |
||||
* (对供应品检验校准效率) |
||||
*/ |
||||
@ApiModelProperty(value="(对供应品检验校准效率)") |
||||
private String checkAndCalibrateEfficiencyOfSupplies; |
||||
|
||||
/** |
||||
* (对供应商总体服务是否满意) |
||||
*/ |
||||
@ApiModelProperty(value="(对供应商总体服务是否满意)") |
||||
private String overallSupplierServiceSatisfaction; |
||||
|
||||
/** |
||||
* (服务商/供应商评价表id) |
||||
*/ |
||||
@ApiModelProperty(value="(服务商/供应商评价表id)") |
||||
private String evaluationFormId; |
||||
|
||||
/** |
||||
* (供应商态度) |
||||
*/ |
||||
@ApiModelProperty(value="(供应商态度)") |
||||
private String supplierAttitude; |
||||
|
||||
/** |
||||
* (供应商设备与设施) |
||||
*/ |
||||
@ApiModelProperty(value="(供应商设备与设施)") |
||||
private String supplierEquipmentAndFacilities; |
||||
|
||||
/** |
||||
* (供应商技术与管理能力) |
||||
*/ |
||||
@ApiModelProperty(value="(供应商技术与管理能力)") |
||||
private String supplierTechnologyAndManagementCapability; |
||||
|
||||
/** |
||||
* (供应商交货是否及时) |
||||
*/ |
||||
@ApiModelProperty(value="(供应商交货是否及时)") |
||||
private String whetherTheSupplierDeliversOnTime; |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/** |
||||
* evaluationResultId |
||||
*/ |
||||
@TableId(value = "evaluation_result_id", type = IdType.ASSIGN_UUID) |
||||
@ApiModelProperty(value="evaluationResultId") |
||||
private String evaluationResultId; |
||||
|
||||
|
||||
} |
@ -1,17 +0,0 @@ |
||||
package digital.laboratory.platform.reagent.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import digital.laboratory.platform.reagent.entity.EvaluationResult; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
import org.apache.ibatis.annotations.Param; |
||||
|
||||
/** |
||||
* (服务商/供应商评价结果) Mapper 接口 |
||||
* |
||||
* @author Zhang Xiaolong created at 2023-03-10 |
||||
* @describe (服务商/供应商评价结果) Mapper 类 |
||||
*/ |
||||
@Mapper |
||||
public interface EvaluationResultMapper extends BaseMapper<EvaluationResult> { |
||||
|
||||
} |
@ -1,14 +0,0 @@ |
||||
package digital.laboratory.platform.reagent.service; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
import digital.laboratory.platform.reagent.entity.EvaluationResult; |
||||
|
||||
/** |
||||
* (服务商/供应商评价结果)服务类 |
||||
* |
||||
* @author Zhang Xiaolong created at 2023-03-10 |
||||
* @describe (服务商/供应商评价结果) 服务类 |
||||
*/ |
||||
public interface EvaluationResultService extends IService<EvaluationResult> { |
||||
|
||||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue