|
|
@@ -0,0 +1,53 @@
|
|
|
+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 lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Data
|
|
|
+@ApiModel(value="sms_check_customer_info_become_due", description="稽核资料到期数据表")
|
|
|
+@TableName("sms_check_customer_info_become_due")
|
|
|
+public class SmsCheckCustomerInfoBecomeDue implements Serializable {
|
|
|
+ /** 主键 */
|
|
|
+ @TableId(type = IdType.ASSIGN_ID)
|
|
|
+ private String id;
|
|
|
+ /** 任务ID */
|
|
|
+ private String taskId;
|
|
|
+ /** 关联稽核信息ID */
|
|
|
+ private String infoId;
|
|
|
+ /** 稽核状态(0:未处理;1:未完善;2:待稽核;4:待整改;5:稽核通过;) */
|
|
|
+ private int checkState;
|
|
|
+ /** 客户信息所属类型:1:行短稽核 2:物联网业务稽核 3.复开审批 4.中继线稽核 */
|
|
|
+ private int type;
|
|
|
+ /** 行短码号证书是否到期 */
|
|
|
+ private int shortNowCodeNumberDateIs;
|
|
|
+ /** 行短备案通知是否到期 */
|
|
|
+ private int shortNowFilingsDataIs;
|
|
|
+ /** 行短增值业务许可证是否到期 */
|
|
|
+ private int shortNowPermitDateIs;
|
|
|
+ /** 行短合同是否到期 */
|
|
|
+ private int shortNowContractDateIs;
|
|
|
+ /** 物联网合同是否到期 */
|
|
|
+ private int lotContractDateIs;
|
|
|
+ /** 中继线业务合同是否到期 */
|
|
|
+ private int truckContractDateIs;
|
|
|
+ /** 中继线房屋租凭合同是否到期 */
|
|
|
+ private int truckHouseDateIs;
|
|
|
+ /** 中继线增值业务许可证是否到期 */
|
|
|
+ private int truckAddedLicenseDateIs;
|
|
|
+ /** 删除标识 */
|
|
|
+ private Integer delFlag;
|
|
|
+ /** 创建人 */
|
|
|
+ private String createBy;
|
|
|
+ /** 创建时间 */
|
|
|
+ private Date createTime;
|
|
|
+ /** 更新人 */
|
|
|
+ private String updateBy;
|
|
|
+ /** 更新时间 */
|
|
|
+ private Date updateTime;
|
|
|
+}
|