| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /**对象值:*/ |
| | | /**对象值:*/ |
| | | |
| | | public static final String OBJECT_VALUE_USERPHOTO = "userPhoto"; |
| | | public static final String OBJECT_VALUE_ORDERPHONE = "orderPhone"; |
| | |
| | | public static final String OBJECT_VALUE_ADDRESS = "address"; |
| | | public static final String OBJECT_VALUE_MAILADDRESS = "mailAddress"; |
| | | |
| | | public static final String OBJECT_NAME_USERPHOTO = "学员照片"; |
| | | public static final String OBJECT_NAME_ORDERPHONE = "其它电话"; |
| | | public static final String OBJECT_NAME_USERPHOTO = "学员照片"; |
| | | public static final String OBJECT_NAME_ORDERPHONE = "其它电话"; |
| | | public static final String OBJECT_NAME_QQ = "QQ"; |
| | | public static final String OBJECT_NAME_WEIXIN = "微信"; |
| | | public static final String OBJECT_NAME_BIRTHDAY = "生日"; |
| | | public static final String OBJECT_NAME_IDNUMBER = "身份证"; |
| | | public static final String OBJECT_NAME_COMPANY = "公司"; |
| | | public static final String OBJECT_NAME_ADDRESS = "所在地区"; |
| | | public static final String OBJECT_NAME_MAILADDRESS = "是否索取发票"; |
| | | public static final String OBJECT_NAME_WEIXIN = "微信"; |
| | | public static final String OBJECT_NAME_BIRTHDAY = "生日"; |
| | | public static final String OBJECT_NAME_IDNUMBER = "身份证"; |
| | | public static final String OBJECT_NAME_COMPANY = "公司"; |
| | | public static final String OBJECT_NAME_ADDRESS = "所在地区"; |
| | | public static final String OBJECT_NAME_MAILADDRESS = "是否索取发票"; |
| | | |
| | | public static final String OBJECT_TYPE_TEXT = "text"; // 文本框,限制长度,其他不做校验 |
| | | public static final String OBJECT_TYPE_TEXTAREA = "textarea"; // 多行文本 |
| | | public static final String OBJECT_TYPE_NUMBER = "number"; // 数字 |
| | | public static final String OBJECT_TYPE_MOBILE_PHONE = "mobile_phone"; // 手机号 |
| | | public static final String OBJECT_TYPE_TEL = "tel"; // 固话 |
| | | public static final String OBJECT_TYPE_EMAIL = "email"; // 邮箱 |
| | | public static final String OBJECT_TYPE_DATE = "date"; // 日期 |
| | | public static final String OBJECT_TYPE_TIME = "time"; // 时间 |
| | | public static final String OBJECT_TYPE_IMG = "img"; // 单张图片 |
| | | public static final String OBJECT_TYPE_MULTI_IMG = "multi_img"; // 多张图片 |
| | | public static final String OBJECT_TYPE_ADDRESS = "address"; //地址 |
| | | public static final String OBJECT_TYPE_RADIO = "radio"; // 单选 |
| | | public static final String OBJECT_TYPE_IDNUMBER = "idNumber"; // 身份证 |
| | | public static final String OBJECT_TYPE_TEXT = "text"; // 文本框,限制长度,其他不做校验 |
| | | public static final String OBJECT_TYPE_TEXTAREA = "textarea"; // 多行文本 |
| | | public static final String OBJECT_TYPE_NUMBER = "number"; // 数字 |
| | | public static final String OBJECT_TYPE_MOBILE_PHONE = "mobile_phone"; // 手机号 |
| | | public static final String OBJECT_TYPE_TEL = "tel"; // 固话 |
| | | public static final String OBJECT_TYPE_EMAIL = "email"; // 邮箱 |
| | | public static final String OBJECT_TYPE_DATE = "date"; // 日期 |
| | | public static final String OBJECT_TYPE_TIME = "time"; // 时间 |
| | | public static final String OBJECT_TYPE_IMG = "img"; // 单张图片 |
| | | public static final String OBJECT_TYPE_MULTI_IMG = "multi_img"; // 多张图片 |
| | | public static final String OBJECT_TYPE_ADDRESS = "address"; //地址 |
| | | public static final String OBJECT_TYPE_RADIO = "radio"; // 单选 |
| | | public static final String OBJECT_TYPE_IDNUMBER = "idNumber"; // 身份证 |
| | | |
| | | @Id |
| | | @GeneratedValue(generator = "hibernate-uuid") |
| | |
| | | @Column(name="CUSTOM_ID", unique=true, nullable=false, length=32) |
| | | private String customId; |
| | | |
| | | /**对象值*/ |
| | | /**对象值*/ |
| | | @Column(name="OBJECT_VALUE", length=32) |
| | | private String objectValue; |
| | | |
| | | /**对象名称*/ |
| | | /**对象名称*/ |
| | | @Column(name="OBJECT_NAME", length=32) |
| | | private String objectName; |
| | | |
| | | /**输入类型*/ |
| | | /**输入类型*/ |
| | | @Column(name="OBJECT_TYPE", length=1000) |
| | | private String objectType; |
| | | |
| | | /**单选选项*/ |
| | | /**单选选项*/ |
| | | @Column(name="OBJECT_OPTION", length=20) |
| | | private String objectOption; |
| | | |
| | | /**是否选中(是否显示) 0:不显示 1:显示*/ |
| | | /**是否选中(是否显示) 0:不显示 1:显示*/ |
| | | @Column(name="CHECKED_FLAG", nullable=false) |
| | | private boolean checkedFlag; |
| | | |
| | | /**是否必填 0:非必填 1:必填*/ |
| | | /**是否必填 0:非必填 1:必填*/ |
| | | @Column(name="REQUIRED_FLAG", nullable=false) |
| | | private boolean requiredFlag; |
| | | |
| | | /**是否报名时填写 0:非必填 1:必填*/ |
| | | /**是否报名时填写 0:非必填 1:必填*/ |
| | | @Column(name="SIGNUP_FILLIN", nullable=false) |
| | | private boolean signupFillin; |
| | | |
| | | /**排序*/ |
| | | /**排序*/ |
| | | @Column(name="order_num", length=3) |
| | | private Integer orderNum; |
| | | |
| | | /**班级Id*/ |
| | | /**班级Id*/ |
| | | @Column(name="CLASS_ID", length=32) |
| | | private String classId; |
| | | |
| | | /**机构Id*/ |
| | | /**机构Id*/ |
| | | @Column(name="ORG_ID", length=32) |
| | | private String orgId; |
| | | |