/* * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * Neither the name of the dreamlu.net developer nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * Author: Chill 庄骞 (smallchill@163.com) */ package com.fjhx.supplier.entity; import com.baomidou.mybatisplus.annotation.TableName; import java.time.LocalDateTime; import java.io.Serializable; import com.fjhx.base.BaseStockEntity; import lombok.Data; import lombok.EqualsAndHashCode; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; /** * 供应商实体类 * * @author BladeX * @since 2022-07-22 */ @Data @TableName("stock_supplier") @ApiModel(value = "Supplier对象", description = "供应商") public class Supplier extends BaseStockEntity { private static final long serialVersionUID = 1L; /** * 编码 */ @ApiModelProperty(value = "编码") private String code; /** * 绑定用户 */ @ApiModelProperty(value = "绑定用户") private String bingdUserId; /** * 供应商名称 */ @ApiModelProperty(value = "供应商名称") private String name; /** * 帐期 */ @ApiModelProperty(value = "帐期") private Integer accountDate; /** * 账期说明 */ @ApiModelProperty(value = "账期说明") private String accountDateRemark; /** * 备注 */ @ApiModelProperty(value = "备注") private String remark; /** * 社会信用代码 */ @ApiModelProperty(value = "社会信用代码") private String societyCreditCode; /** * 法人 */ @ApiModelProperty(value = "法人") private String legalPerson; /** * 注册地址 */ @ApiModelProperty(value = "注册地址") private String registeredAddress; /** * 创建日期 */ @ApiModelProperty(value = "创建日期") private LocalDateTime establishDate; /** * 注册资本 */ @ApiModelProperty(value = "注册资本") private String registeredCapital; /** * 企业类型 */ @ApiModelProperty(value = "企业类型") private String enterpriseType; /** * 运营期限 */ @ApiModelProperty(value = "运营期限") private String businessTerm; /** * 运营范围 */ @ApiModelProperty(value = "运营范围") private String businessScope; /** * 物料类型 */ @ApiModelProperty(value = "物料类型") private String categoryId; /** * 加州65号法令合规测试证书 */ @ApiModelProperty(value = "加州65号法令合规测试证书") private String certificate; /** * 备注 */ @ApiModelProperty(value = "备注") private String representative; /** * 营业执照 */ @ApiModelProperty(value = "营业执照") private String businessLicense; }