From 2fcd97552d16718cc7997629fd637a73a5a4483f Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 19 六月 2023 14:44:19 +0800 Subject: [PATCH] 删除 --- src/main/java/com/gk/firework/Domain/AuthorizationInfo.java | 144 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 144 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Domain/AuthorizationInfo.java b/src/main/java/com/gk/firework/Domain/AuthorizationInfo.java new file mode 100644 index 0000000..509733f --- /dev/null +++ b/src/main/java/com/gk/firework/Domain/AuthorizationInfo.java @@ -0,0 +1,144 @@ +package com.gk.firework.Domain; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; + +import java.util.Date; + +@TableName("authorization") +public class AuthorizationInfo { + @TableField(exist = false) + private static final long serialVersionUID = 1L; + + @TableId(type = IdType.AUTO) + private Long id; + + /** 企业编号 enterprisenumber **/ + private String enterprisenumber; + + /** 授权码 authcode **/ + private String authcode; + + /** 授权码前三位(唯一确定一家企业) authcodeprefix **/ + private String authcodeprefix; + + /** 合同编号 contractcode **/ + private String contractcode; + + /** 创建时间 createdat **/ + private Date createdat; + + /** 创建人 createdby **/ + private String createdby; + + /** 标记 flag 0标配 1无身份证阅读器 2无扫码枪 3全无**/ + private Byte flag; + + /** 最后使用时间 lasttime **/ + private Date lasttime; + + /** 是否使用(0.未启用;1.已启用) status **/ + private Byte status; + + /** id **/ + public Long getId() { + return id; + } + + /** id **/ + public void setId(Long id) { + this.id = id; + } + + /** 企业编号 enterprisenumber **/ + public String getEnterprisenumber() { + return enterprisenumber; + } + + /** 企业编号 enterprisenumber **/ + public void setEnterprisenumber(String enterprisenumber) { + this.enterprisenumber = enterprisenumber == null ? null : enterprisenumber.trim(); + } + + /** 授权码 authcode **/ + public String getAuthcode() { + return authcode; + } + + /** 授权码 authcode **/ + public void setAuthcode(String authcode) { + this.authcode = authcode == null ? null : authcode.trim(); + } + + /** 授权码前三位(唯一确定一家企业) authcodeprefix **/ + public String getAuthcodeprefix() { + return authcodeprefix; + } + + /** 授权码前三位(唯一确定一家企业) authcodeprefix **/ + public void setAuthcodeprefix(String authcodeprefix) { + this.authcodeprefix = authcodeprefix == null ? null : authcodeprefix.trim(); + } + + /** 合同编号 contractcode **/ + public String getContractcode() { + return contractcode; + } + + /** 合同编号 contractcode **/ + public void setContractcode(String contractcode) { + this.contractcode = contractcode == null ? null : contractcode.trim(); + } + + /** 创建时间 createdat **/ + public Date getCreatedat() { + return createdat; + } + + /** 创建时间 createdat **/ + public void setCreatedat(Date createdat) { + this.createdat = createdat; + } + + /** 创建人 createdby **/ + public String getCreatedby() { + return createdby; + } + + /** 创建人 createdby **/ + public void setCreatedby(String createdby) { + this.createdby = createdby == null ? null : createdby.trim(); + } + + /** 标记 flag **/ + public Byte getFlag() { + return flag; + } + + /** 标记 flag **/ + public void setFlag(Byte flag) { + this.flag = flag; + } + + /** 最后使用时间 lasttime **/ + public Date getLasttime() { + return lasttime; + } + + /** 最后使用时间 lasttime **/ + public void setLasttime(Date lasttime) { + this.lasttime = lasttime; + } + + /** 是否使用(0.未启用;1.已启用) status **/ + public Byte getStatus() { + return status; + } + + /** 是否使用(0.未启用;1.已启用) status **/ + public void setStatus(Byte status) { + this.status = status; + } +} -- Gitblit v1.9.2