package customization.test; import aiyh.utils.annotation.DateFormatAn; import java.util.Date; /** * @author EBU7-dev1-ayh * @create 2021/9/3 0003 15:39 * testVo */ public class TestCaseVo { int id; int requestId; int workflowType; int attachmentField; int showField; String modelTableName; String modelField; int showValue; int hiddenValue; int formmodeid; String templateField; String isTemplateShow; @DateFormatAn("yyyy-MM-dd") Date modedatacreatedate; @Override public String toString() { return "TestCaseVo{" + "id=" + id + ", requestId=" + requestId + ", workflowType=" + workflowType + ", attachmentField=" + attachmentField + ", showField=" + showField + ", modelTableName='" + modelTableName + '\'' + ", modelField='" + modelField + '\'' + ", showValue=" + showValue + ", hiddenValue=" + hiddenValue + ", formmodeid=" + formmodeid + ", templateField='" + templateField + '\'' + ", isTemplateShow='" + isTemplateShow + '\'' + ", modedatacreatedate=" + modedatacreatedate + '}'; } }