VppCustomerAccess.java 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.usky.vpp.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import lombok.Data;
  7. import lombok.EqualsAndHashCode;
  8. import java.io.Serializable;
  9. import java.math.BigDecimal;
  10. import java.time.LocalDateTime;
  11. /**
  12. * vpp_customer_access
  13. */
  14. @Data
  15. @EqualsAndHashCode(callSuper = false)
  16. @TableName("vpp_customer_access")
  17. public class VppCustomerAccess implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. @TableId(value = "id", type = IdType.AUTO)
  20. private Long id;
  21. @TableField("apply_no")
  22. private String applyNo;
  23. @TableField("account_no")
  24. private String accountNo;
  25. @TableField("customer_name")
  26. private String customerName;
  27. @TableField("customer_type")
  28. private Integer customerType;
  29. @TableField("power_company")
  30. private String powerCompany;
  31. @TableField("contract_capacity")
  32. private BigDecimal contractCapacity;
  33. @TableField("business_license_url")
  34. private String businessLicenseUrl;
  35. @TableField("credit_status")
  36. private Integer creditStatus;
  37. @TableField("access_status")
  38. private Integer accessStatus;
  39. @TableField("audit_opinion")
  40. private String auditOpinion;
  41. @TableField("audit_at")
  42. private LocalDateTime auditAt;
  43. @TableField("customer_id")
  44. private Long customerId;
  45. @TableField("apply_at")
  46. private LocalDateTime applyAt;
  47. @TableField("tenant_id")
  48. private Integer tenantId;
  49. @TableField("create_time")
  50. private LocalDateTime createTime;
  51. @TableField("update_time")
  52. private LocalDateTime updateTime;
  53. @TableField("created_by")
  54. private String createdBy;
  55. @TableField("updated_by")
  56. private String updatedBy;
  57. @TableField("delete_flag")
  58. private Integer deleteFlag;
  59. @TableField("deleted_at")
  60. private LocalDateTime deletedAt;
  61. }