2 changed files with 66 additions and 0 deletions
@ -0,0 +1,57 @@ |
|||||
|
package com.yxt.supervise.customer.api.supplierbankinfo; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import com.yxt.common.core.domain.BaseEntity; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Author dimengzhe |
||||
|
* @Date 2023/3/7 8:59 |
||||
|
* @Description |
||||
|
*/ |
||||
|
@Data |
||||
|
@ApiModel(value = "供应商信息", description = "供应商信息") |
||||
|
@TableName("supplier_bank_info") |
||||
|
public class SupplierBankInfo extends BaseEntity { |
||||
|
private static final long serialVersionUID = -6729115896266312554L; |
||||
|
|
||||
|
@ApiModelProperty("名称") |
||||
|
private String name; // 名称
|
||||
|
@ApiModelProperty("统一编码") |
||||
|
private String codeUnified; // 统一编码
|
||||
|
@ApiModelProperty("联系人") |
||||
|
private String contacts; // 联系人
|
||||
|
@ApiModelProperty("电话") |
||||
|
private String telephone; // 电话
|
||||
|
@ApiModelProperty("地址") |
||||
|
private String address; // 地址
|
||||
|
@ApiModelProperty("银行帐户") |
||||
|
private String bankAccount; // 银行帐户
|
||||
|
@ApiModelProperty("帐号") |
||||
|
private String bankAccountNumber; // 帐号
|
||||
|
@ApiModelProperty("开户行名称") |
||||
|
private String bankName; // 开户行名称
|
||||
|
@ApiModelProperty("法人") |
||||
|
private String legalRepresentative; // 法人
|
||||
|
@ApiModelProperty("营业执照号") |
||||
|
private String businessLicenseNo; // 营业执照号
|
||||
|
@ApiModelProperty("监管审核状态0待审核1为通过2为拒绝") |
||||
|
private Integer purchaseRequisition; // 监管审核状态0待审核1为通过2为拒绝
|
||||
|
@ApiModelProperty("监管审批意见") |
||||
|
private String purchaseRemarks; // 监管审批意见
|
||||
|
@ApiModelProperty("银行0未审核,1审核通过,2审核不通过") |
||||
|
private Integer bankState; // 银行0未审核,1审核通过,2审核不通过
|
||||
|
@ApiModelProperty("银行审批意见") |
||||
|
private String bankRemarks; // 银行审批意见
|
||||
|
@ApiModelProperty("锁定状态1.锁定2.未锁定 ") |
||||
|
private Integer lockingStatus; |
||||
|
@ApiModelProperty("锁定原因") |
||||
|
private String lockingReason; |
||||
|
|
||||
|
/* @ApiModelProperty("营业执照附件") |
||||
|
private String businessLicenseFiles; // 营业执照附件*/
|
||||
|
/* @ApiModelProperty("合同信息") |
||||
|
private SupplierContractInfoDto supplierContractInfoDto; // 合同信息*/
|
||||
|
} |
@ -0,0 +1,9 @@ |
|||||
|
package com.yxt.supervise.customer.biz.supplierbankinfo; |
||||
|
|
||||
|
/** |
||||
|
* @Author dimengzhe |
||||
|
* @Date 2023/3/7 9:00 |
||||
|
* @Description |
||||
|
*/ |
||||
|
public class SupplierBankInfoRest { |
||||
|
} |
Loading…
Reference in new issue