|
|
@@ -0,0 +1,80 @@
|
|
|
+package org.jeecg.modules.saasmanager.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+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 org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: hlw_company_invoice_information
|
|
|
+ * @Author: jeecg-boot
|
|
|
+ * @Date: 2022-10-24
|
|
|
+ * @Version: V1.0
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("hlw_company_invoice_information")
|
|
|
+@Accessors(chain = true)
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@ApiModel(value="hlw_company_invoice_information对象", description="hlw_company_invoice_information")
|
|
|
+public class HlwCompanyInvoiceInformation implements Serializable {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**主键*/
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
+ @ApiModelProperty(value = "主键")
|
|
|
+ private Integer id;
|
|
|
+ /**企业id*/
|
|
|
+ @Excel(name = "企业id", width = 15)
|
|
|
+ @ApiModelProperty(value = "企业id")
|
|
|
+ private Integer companyId;
|
|
|
+ /**发票抬头*/
|
|
|
+ @Excel(name = "发票抬头", width = 15)
|
|
|
+ @ApiModelProperty(value = "发票抬头")
|
|
|
+ private String invoiceTitle;
|
|
|
+ /**纳税人识别号*/
|
|
|
+ @Excel(name = "纳税人识别号", width = 15)
|
|
|
+ @ApiModelProperty(value = "纳税人识别号")
|
|
|
+ private String dutyParagraph;
|
|
|
+ /**开户银行*/
|
|
|
+ @Excel(name = "开户银行", width = 15)
|
|
|
+ @ApiModelProperty(value = "开户银行")
|
|
|
+ private String accountBank;
|
|
|
+ /**开户账号*/
|
|
|
+ @Excel(name = "开户账号", width = 15)
|
|
|
+ @ApiModelProperty(value = "开户账号")
|
|
|
+ private String account;
|
|
|
+ /**地址*/
|
|
|
+ @Excel(name = "地址", width = 15)
|
|
|
+ @ApiModelProperty(value = "地址")
|
|
|
+ private String registerAddress;
|
|
|
+ /**电话*/
|
|
|
+ @Excel(name = "电话", width = 15)
|
|
|
+ @ApiModelProperty(value = "电话")
|
|
|
+ private String registerPhone;
|
|
|
+ /**创建时间*/
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
+ private Date createTime;
|
|
|
+ /**创建者*/
|
|
|
+ @ApiModelProperty(value = "创建者")
|
|
|
+ private String createBy;
|
|
|
+ /**更新时间*/
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ @ApiModelProperty(value = "更新时间")
|
|
|
+ private Date updateTime;
|
|
|
+ /**更新者*/
|
|
|
+ @ApiModelProperty(value = "更新者")
|
|
|
+ private String updateBy;
|
|
|
+}
|