|
@@ -0,0 +1,120 @@
|
|
|
|
|
+package org.jeecg.modules.smscheck.entity;
|
|
|
|
|
+
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
|
|
+import lombok.experimental.Accessors;
|
|
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
|
|
+
|
|
|
|
|
+import java.util.Objects;
|
|
|
|
|
+
|
|
|
|
|
+@Data
|
|
|
|
|
+@TableName("sms_check_customer_data_log_bill")
|
|
|
|
|
+@Accessors(chain = true)
|
|
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
|
|
+@ApiModel(value="sms_check_customer_data_log_bill", description="客户资料稽核稽核结果bill")
|
|
|
|
|
+public class SmsCheckCustomerDataLogBill {
|
|
|
|
|
+
|
|
|
|
|
+ /** 主键 */
|
|
|
|
|
+ @TableId(type = IdType.ASSIGN_ID)
|
|
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
|
|
+ private String id;
|
|
|
|
|
+ /** 客户id */
|
|
|
|
|
+ @Excel(name = "客户id", width = 15)
|
|
|
|
|
+ @ApiModelProperty(value = "客户id")
|
|
|
|
|
+ private String infoId;
|
|
|
|
|
+ @ApiModelProperty(value = "基本信息稽核稽核结果")
|
|
|
|
|
+ private String infoResult;
|
|
|
|
|
+ @ApiModelProperty(value = "基本信息结果备注")
|
|
|
|
|
+ private String infoResultRemark;
|
|
|
|
|
+ @ApiModelProperty(value = "稽核资料ID")
|
|
|
|
|
+ private String dataId;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "合同到期时间稽核结果")
|
|
|
|
|
+ private String contractDateResult;
|
|
|
|
|
+ @ApiModelProperty(value = "合同到期时间结果备注")
|
|
|
|
|
+ private String contractDateResultRemark;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "营业执照到期时间稽核结果")
|
|
|
|
|
+ private String businessLicenseDateResult;
|
|
|
|
|
+ @ApiModelProperty(value = "营业执照到期时间结果备注")
|
|
|
|
|
+ private String businessLicenseDateResultRemark;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "码号证书到期时间稽核结果")
|
|
|
|
|
+ private String codeNumberDateResult;
|
|
|
|
|
+ @ApiModelProperty(value = "码号证书到期时间结果备注")
|
|
|
|
|
+ private String codeNumberDateResultRemark;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "备案通知到期时间结果备注")
|
|
|
|
|
+ private String filingsDateResultRemark;
|
|
|
|
|
+ @ApiModelProperty(value = "备案通知到期时间稽核结果")
|
|
|
|
|
+ private String filingsDateResult;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "增值业务许可证到期时间结果备注")
|
|
|
|
|
+ private String permitDateResultRemark;
|
|
|
|
|
+ @ApiModelProperty(value = "增值业务许可证到期时间稽核结果")
|
|
|
|
|
+ private String permitDateResult;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "法人/责任人证件稽核结果")
|
|
|
|
|
+ private String corporationCardResult;
|
|
|
|
|
+ @ApiModelProperty(value = "法人/责任人证件结果备注")
|
|
|
|
|
+ private String corporationCardResultRemark;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "责任人授权书结果备注")
|
|
|
|
|
+ private String personResponsibleResultRemark;
|
|
|
|
|
+ @ApiModelProperty(value = "责任人授权书稽核结果")
|
|
|
|
|
+ private String personResponsibleResult;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "经办人证件稽核结果")
|
|
|
|
|
+ private String operatorCardResult;
|
|
|
|
|
+ @ApiModelProperty(value = "经办人证件结果备注")
|
|
|
|
|
+ private String operatorCardResultRemark;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "经办人手持身份证照片结果备注")
|
|
|
|
|
+ private String operatorCardPhoneResultRemark;
|
|
|
|
|
+ @ApiModelProperty(value = "经办人手持身份证照片稽核结果")
|
|
|
|
|
+ private String operatorCardPhoneResult;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "机房设备照片稽核结果")
|
|
|
|
|
+ private String devicePhoneResult;
|
|
|
|
|
+ @ApiModelProperty(value = "机房设备照片结果备注")
|
|
|
|
|
+ private String devicePhoneResultRemark;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "短信模板稽核结果")
|
|
|
|
|
+ private String textMessageResult;
|
|
|
|
|
+ @ApiModelProperty(value = "短信模板结果备注")
|
|
|
|
|
+ private String textMessageResultRemark;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "端口类短信业务责任承诺书稽核结果")
|
|
|
|
|
+ private String textMessageBookResult;
|
|
|
|
|
+ @ApiModelProperty(value = "端口类短信业务责任承诺书结果备注")
|
|
|
|
|
+ private String textMessageBookResultRemark;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "信息安全责任承诺书稽核结果")
|
|
|
|
|
+ private String secureBookResult;
|
|
|
|
|
+ @ApiModelProperty(value = "信息安全责任承诺书结果备注")
|
|
|
|
|
+ private String secureBookResultRemark;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "特殊资费审批稽核结果")
|
|
|
|
|
+ private String specialResult;
|
|
|
|
|
+ @ApiModelProperty(value = "特殊资费审批结果备注")
|
|
|
|
|
+ private String specialResultRemark;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "入网签报稽核结果")
|
|
|
|
|
+ private String networkAccessResult;
|
|
|
|
|
+ @ApiModelProperty(value = "入网签报结果备注")
|
|
|
|
|
+ private String networkAccessResultRemark;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "集团价格审批稽核结果")
|
|
|
|
|
+ private String groupPriceApprovalResult;
|
|
|
|
|
+ @ApiModelProperty(value = "集团价格审批结果备注")
|
|
|
|
|
+ private String groupPriceApprovalResultRemark;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+}
|