增加索赔验证工时映射表实体类
This commit is contained in:
@@ -0,0 +1,69 @@
|
|||||||
|
package com.volvo.ai.analytic.center.entity;
|
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.*;
|
||||||
|
import com.volvo.common.core.base.BaseEntity;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@TableName("tm_claim_verification_part_hours_mapping")
|
||||||
|
public class TmClaimVerificationPartHoursMapping extends BaseEntity {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自增主键id
|
||||||
|
*/
|
||||||
|
@TableId(value = "id", type = IdType.AUTO)
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 外键part_id
|
||||||
|
*/
|
||||||
|
@TableField("part_id")
|
||||||
|
private String partId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 外键hours_id
|
||||||
|
*/
|
||||||
|
@TableField("hours_id")
|
||||||
|
private String hoursId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 记录版本号,即乐观锁
|
||||||
|
*/
|
||||||
|
@TableField("versions")
|
||||||
|
private Integer versions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除标识(0-未删除,1-已删除)
|
||||||
|
*/
|
||||||
|
@TableField("is_deleted")
|
||||||
|
private Integer isDeleted;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建人
|
||||||
|
*/
|
||||||
|
@TableField("create_by")
|
||||||
|
private String createBy;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新人
|
||||||
|
*/
|
||||||
|
@TableField("update_by")
|
||||||
|
private String updateBy;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建sql人
|
||||||
|
*/
|
||||||
|
@TableField("create_sqlby")
|
||||||
|
private String createSqlby;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 更新sql人
|
||||||
|
*/
|
||||||
|
@TableField("update_sqlby")
|
||||||
|
private String updateSqlby;
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
package com.volvo.ai.analytic.center.mapper;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.volvo.ai.analytic.center.entity.TmClaimVerificationPartHoursMapping;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
@Mapper
|
||||||
|
public interface TmClaimVerificationPartHoursMappingMapper extends BaseMapper<TmClaimVerificationPartHoursMapping> {
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user