|
|
@@ -0,0 +1,373 @@
|
|
|
+package cn.com.yusys.yusp.domain.entity;
|
|
|
+
|
|
|
+import javax.validation.constraints.NotBlank;
|
|
|
+import javax.validation.constraints.Size;
|
|
|
+import javax.validation.constraints.NotNull;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import org.hibernate.validator.constraints.Length;
|
|
|
+
|
|
|
+/**
|
|
|
+*
|
|
|
+* @TableName tab_log
|
|
|
+*/
|
|
|
+public class TabLog implements Serializable {
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ @NotBlank(message="[]不能为空")
|
|
|
+ @Size(max= 100,message="编码长度不能超过100")
|
|
|
+ @ApiModelProperty("")
|
|
|
+ @Length(max= 100,message="编码长度不能超过100")
|
|
|
+ private String id;
|
|
|
+ /**
|
|
|
+ * 应用ID
|
|
|
+ */
|
|
|
+ @Size(max= 100,message="编码长度不能超过100")
|
|
|
+ @ApiModelProperty("应用ID")
|
|
|
+ @Length(max= 100,message="编码长度不能超过100")
|
|
|
+ private String appId;
|
|
|
+ /**
|
|
|
+ * 调用时间
|
|
|
+ */
|
|
|
+ @ApiModelProperty("调用时间")
|
|
|
+ private Date insertTime;
|
|
|
+ /**
|
|
|
+ * 业务属性,贷款编号
|
|
|
+ */
|
|
|
+ @Size(max= 100,message="编码长度不能超过100")
|
|
|
+ @ApiModelProperty("业务属性,贷款编号")
|
|
|
+ @Length(max= 100,message="编码长度不能超过100")
|
|
|
+ private String businessAttr;
|
|
|
+ /**
|
|
|
+ * tab_tag_category的主键
|
|
|
+ */
|
|
|
+ @Size(max= 100,message="编码长度不能超过100")
|
|
|
+ @ApiModelProperty("tab_tag_category的主键")
|
|
|
+ @Length(max= 100,message="编码长度不能超过100")
|
|
|
+ private String category;
|
|
|
+ /**
|
|
|
+ * 输入短语
|
|
|
+ */
|
|
|
+ @Size(max= 100,message="编码长度不能超过100")
|
|
|
+ @ApiModelProperty("输入短语")
|
|
|
+ @Length(max= 100,message="编码长度不能超过100")
|
|
|
+ private String phrase;
|
|
|
+ /**
|
|
|
+ * 附件名称
|
|
|
+ */
|
|
|
+ @Size(max= 100,message="编码长度不能超过100")
|
|
|
+ @ApiModelProperty("附件名称")
|
|
|
+ @Length(max= 100,message="编码长度不能超过100")
|
|
|
+ private String attachment;
|
|
|
+ /**
|
|
|
+ * 附件路径
|
|
|
+ */
|
|
|
+ @Size(max= 100,message="编码长度不能超过100")
|
|
|
+ @ApiModelProperty("附件路径")
|
|
|
+ @Length(max= 100,message="编码长度不能超过100")
|
|
|
+ private String attachmentUrl;
|
|
|
+ /**
|
|
|
+ * 打标结果,JSON
|
|
|
+[{
|
|
|
+label:xxx,
|
|
|
+label_code:xxx,
|
|
|
+desc:xxx
|
|
|
+passr: true/false
|
|
|
+}]
|
|
|
+ */
|
|
|
+ @Size(max= 100,message="编码长度不能超过100")
|
|
|
+ @ApiModelProperty("打标结果,JSON [{label:xxx, label_code:xxx, desc:xxx passr: true/false }]")
|
|
|
+ @Length(max= 100,message="编码长度不能超过100")
|
|
|
+ private String result;
|
|
|
+ /**
|
|
|
+ * 反馈人ID
|
|
|
+ */
|
|
|
+ @Size(max= 100,message="编码长度不能超过100")
|
|
|
+ @ApiModelProperty("反馈人ID")
|
|
|
+ @Length(max= 100,message="编码长度不能超过100")
|
|
|
+ private String feedbackUserId;
|
|
|
+ /**
|
|
|
+ * 反馈人名字
|
|
|
+ */
|
|
|
+ @Size(max= 100,message="编码长度不能超过100")
|
|
|
+ @ApiModelProperty("反馈人名字")
|
|
|
+ @Length(max= 100,message="编码长度不能超过100")
|
|
|
+ private String feedbackUserNm;
|
|
|
+ /**
|
|
|
+ * 反馈时间
|
|
|
+ */
|
|
|
+ @ApiModelProperty("反馈时间")
|
|
|
+ private Date feedbackTime;
|
|
|
+ /**
|
|
|
+ * 反馈,agree/reject
|
|
|
+ */
|
|
|
+ @Size(max= 100,message="编码长度不能超过100")
|
|
|
+ @ApiModelProperty("反馈,agree/reject")
|
|
|
+ @Length(max= 100,message="编码长度不能超过100")
|
|
|
+ private String feedback;
|
|
|
+ /**
|
|
|
+ * JSON
|
|
|
+[
|
|
|
+{
|
|
|
+ label:xxx,
|
|
|
+ label_code:xxx,
|
|
|
+ desc:xxx
|
|
|
+ passr: true/false
|
|
|
+}
|
|
|
+]
|
|
|
+ */
|
|
|
+ @Size(max= 100,message="编码长度不能超过100")
|
|
|
+ @ApiModelProperty("JSON {label:xxx, label_code:xxx, desc:xxx passr: true/false}]")
|
|
|
+ @Length(max= 100,message="编码长度不能超过100")
|
|
|
+ private String feedbackResult;
|
|
|
+ /**
|
|
|
+ * 0:打标执行中;1:打标完成; 2:客户经理已经确认
|
|
|
+ */
|
|
|
+ @ApiModelProperty("0:打标执行中;1:打标完成; 2:客户经理已经确认")
|
|
|
+ private Integer state;
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private void setId(String id){
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 应用ID
|
|
|
+ */
|
|
|
+ private void setAppId(String appId){
|
|
|
+ this.appId = appId;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 调用时间
|
|
|
+ */
|
|
|
+ private void setInsertTime(Date insertTime){
|
|
|
+ this.insertTime = insertTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 业务属性,贷款编号
|
|
|
+ */
|
|
|
+ private void setBusinessAttr(String businessAttr){
|
|
|
+ this.businessAttr = businessAttr;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * tab_tag_category的主键
|
|
|
+ */
|
|
|
+ private void setCategory(String category){
|
|
|
+ this.category = category;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 输入短语
|
|
|
+ */
|
|
|
+ private void setPhrase(String phrase){
|
|
|
+ this.phrase = phrase;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 附件名称
|
|
|
+ */
|
|
|
+ private void setAttachment(String attachment){
|
|
|
+ this.attachment = attachment;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 附件路径
|
|
|
+ */
|
|
|
+ private void setAttachmentUrl(String attachmentUrl){
|
|
|
+ this.attachmentUrl = attachmentUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 打标结果,JSON
|
|
|
+[{
|
|
|
+label:xxx,
|
|
|
+label_code:xxx,
|
|
|
+desc:xxx
|
|
|
+passr: true/false
|
|
|
+}]
|
|
|
+ */
|
|
|
+ private void setResult(String result){
|
|
|
+ this.result = result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 反馈人ID
|
|
|
+ */
|
|
|
+ private void setFeedbackUserId(String feedbackUserId){
|
|
|
+ this.feedbackUserId = feedbackUserId;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 反馈人名字
|
|
|
+ */
|
|
|
+ private void setFeedbackUserNm(String feedbackUserNm){
|
|
|
+ this.feedbackUserNm = feedbackUserNm;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 反馈时间
|
|
|
+ */
|
|
|
+ private void setFeedbackTime(Date feedbackTime){
|
|
|
+ this.feedbackTime = feedbackTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 反馈,agree/reject
|
|
|
+ */
|
|
|
+ private void setFeedback(String feedback){
|
|
|
+ this.feedback = feedback;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * JSON
|
|
|
+[
|
|
|
+{
|
|
|
+ label:xxx,
|
|
|
+ label_code:xxx,
|
|
|
+ desc:xxx
|
|
|
+ passr: true/false
|
|
|
+}
|
|
|
+]
|
|
|
+ */
|
|
|
+ private void setFeedbackResult(String feedbackResult){
|
|
|
+ this.feedbackResult = feedbackResult;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 0:打标执行中;1:打标完成; 2:客户经理已经确认
|
|
|
+ */
|
|
|
+ private void setState(Integer state){
|
|
|
+ this.state = state;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private String getId(){
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 应用ID
|
|
|
+ */
|
|
|
+ private String getAppId(){
|
|
|
+ return this.appId;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 调用时间
|
|
|
+ */
|
|
|
+ private Date getInsertTime(){
|
|
|
+ return this.insertTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 业务属性,贷款编号
|
|
|
+ */
|
|
|
+ private String getBusinessAttr(){
|
|
|
+ return this.businessAttr;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * tab_tag_category的主键
|
|
|
+ */
|
|
|
+ private String getCategory(){
|
|
|
+ return this.category;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 输入短语
|
|
|
+ */
|
|
|
+ private String getPhrase(){
|
|
|
+ return this.phrase;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 附件名称
|
|
|
+ */
|
|
|
+ private String getAttachment(){
|
|
|
+ return this.attachment;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 附件路径
|
|
|
+ */
|
|
|
+ private String getAttachmentUrl(){
|
|
|
+ return this.attachmentUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 打标结果,JSON
|
|
|
+[{
|
|
|
+label:xxx,
|
|
|
+label_code:xxx,
|
|
|
+desc:xxx
|
|
|
+passr: true/false
|
|
|
+}]
|
|
|
+ */
|
|
|
+ private String getResult(){
|
|
|
+ return this.result;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 反馈人ID
|
|
|
+ */
|
|
|
+ private String getFeedbackUserId(){
|
|
|
+ return this.feedbackUserId;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 反馈人名字
|
|
|
+ */
|
|
|
+ private String getFeedbackUserNm(){
|
|
|
+ return this.feedbackUserNm;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 反馈时间
|
|
|
+ */
|
|
|
+ private Date getFeedbackTime(){
|
|
|
+ return this.feedbackTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 反馈,agree/reject
|
|
|
+ */
|
|
|
+ private String getFeedback(){
|
|
|
+ return this.feedback;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * JSON
|
|
|
+[
|
|
|
+{
|
|
|
+ label:xxx,
|
|
|
+ label_code:xxx,
|
|
|
+ desc:xxx
|
|
|
+ passr: true/false
|
|
|
+}
|
|
|
+]
|
|
|
+ */
|
|
|
+ private String getFeedbackResult(){
|
|
|
+ return this.feedbackResult;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 0:打标执行中;1:打标完成; 2:客户经理已经确认
|
|
|
+ */
|
|
|
+ private Integer getState(){
|
|
|
+ return this.state;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|