Supplier.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * Redistributions of source code must retain the above copyright notice,
  8. * this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * Neither the name of the dreamlu.net developer nor the names of its
  13. * contributors may be used to endorse or promote products derived from
  14. * this software without specific prior written permission.
  15. * Author: Chill 庄骞 (smallchill@163.com)
  16. */
  17. package com.fjhx.supplier.entity;
  18. import com.baomidou.mybatisplus.annotation.TableName;
  19. import java.time.LocalDateTime;
  20. import java.io.Serializable;
  21. import com.fjhx.base.BaseStockEntity;
  22. import lombok.Data;
  23. import lombok.EqualsAndHashCode;
  24. import io.swagger.annotations.ApiModel;
  25. import io.swagger.annotations.ApiModelProperty;
  26. /**
  27. * 供应商实体类
  28. *
  29. * @author BladeX
  30. * @since 2022-07-22
  31. */
  32. @Data
  33. @TableName("stock_supplier")
  34. @ApiModel(value = "Supplier对象", description = "供应商")
  35. public class Supplier extends BaseStockEntity {
  36. private static final long serialVersionUID = 1L;
  37. /**
  38. * 编码
  39. */
  40. @ApiModelProperty(value = "编码")
  41. private String code;
  42. /**
  43. * 绑定用户
  44. */
  45. @ApiModelProperty(value = "绑定用户")
  46. private String bingdUserId;
  47. /**
  48. * 供应商名称
  49. */
  50. @ApiModelProperty(value = "供应商名称")
  51. private String name;
  52. /**
  53. * 帐期
  54. */
  55. @ApiModelProperty(value = "帐期")
  56. private Integer accountDate;
  57. /**
  58. * 账期说明
  59. */
  60. @ApiModelProperty(value = "账期说明")
  61. private String accountDateRemark;
  62. /**
  63. * 备注
  64. */
  65. @ApiModelProperty(value = "备注")
  66. private String remark;
  67. /**
  68. * 社会信用代码
  69. */
  70. @ApiModelProperty(value = "社会信用代码")
  71. private String societyCreditCode;
  72. /**
  73. * 法人
  74. */
  75. @ApiModelProperty(value = "法人")
  76. private String legalPerson;
  77. /**
  78. * 注册地址
  79. */
  80. @ApiModelProperty(value = "注册地址")
  81. private String registeredAddress;
  82. /**
  83. * 创建日期
  84. */
  85. @ApiModelProperty(value = "创建日期")
  86. private LocalDateTime establishDate;
  87. /**
  88. * 注册资本
  89. */
  90. @ApiModelProperty(value = "注册资本")
  91. private String registeredCapital;
  92. /**
  93. * 企业类型
  94. */
  95. @ApiModelProperty(value = "企业类型")
  96. private String enterpriseType;
  97. /**
  98. * 运营期限
  99. */
  100. @ApiModelProperty(value = "运营期限")
  101. private String businessTerm;
  102. /**
  103. * 运营范围
  104. */
  105. @ApiModelProperty(value = "运营范围")
  106. private String businessScope;
  107. /**
  108. * 物料类型
  109. */
  110. @ApiModelProperty(value = "物料类型")
  111. private String categoryId;
  112. /**
  113. * 加州65号法令合规测试证书
  114. */
  115. @ApiModelProperty(value = "加州65号法令合规测试证书")
  116. private String certificate;
  117. /**
  118. * 备注
  119. */
  120. @ApiModelProperty(value = "备注")
  121. private String representative;
  122. /**
  123. * 营业执照
  124. */
  125. @ApiModelProperty(value = "营业执照")
  126. private String businessLicense;
  127. }