package com.ruoyi.project.tr.versionControl.domain; import com.ruoyi.framework.aspectj.lang.annotation.Excel; import com.ruoyi.framework.web.domain.BaseEntity; import lombok.Data; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; /** * 安卓版本控制对象 tr_version_control * * * @author wm * @date 2020-05-30 */ @Data public class VersionControl extends BaseEntity { private static final long serialVersionUID = 1L; /** id */ @Excel(name = "id") private Long versionId; /** 版本序号 */ @Excel(name = "版本序号") private Long versionCode; /** 版本名称 */ @Excel(name = "版本名称") private String versionName; /** 更新内容 */ @Excel(name = "更新内容") private String updeteDesc; /** 文件路径 */ @Excel(name = "文件路径") private String apkPtah; /** 强制更新 */ @Excel(name = "强制更新") private Integer isForce; }