package org.jeecg.modules.arj.g.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import io.swagger.annotations.ApiModel; import lombok.Data; import lombok.EqualsAndHashCode; import java.io.Serializable; import java.util.Date; /** *
* 质检 *
* * @author hyy * @since 2023-03-17 */ @Data @EqualsAndHashCode(callSuper = false) @ApiModel(value="Sh14Zj对象", description="质检") public class Sh14Zj implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Integer id; private String headId; private Integer jy; private Integer sy; private Integer hj; @TableField("TENANT_ID") private String tenantId; @TableField("REVISION") private String revision; @TableField("CREATED_BY") private String createdBy; @TableField("CREATED_TIME") private Date createdTime; @TableField("UPDATED_BY") private String updatedBy; @TableField("UPDATED_TIME") private Date updatedTime; }