|
@@ -13,12 +13,12 @@ const CompanyidentifySchema = {
|
|
business: { type: String, required: true, maxLength: 200 }, // 经营范围 必填
|
|
business: { type: String, required: true, maxLength: 200 }, // 经营范围 必填
|
|
capital: { type: String, required: true, maxLength: 200 }, // 注册资本 必填
|
|
capital: { type: String, required: true, maxLength: 200 }, // 注册资本 必填
|
|
establish_date: { type: String, required: true, maxLength: 200 }, // 成立日期 必填
|
|
establish_date: { type: String, required: true, maxLength: 200 }, // 成立日期 必填
|
|
- valid_period: { type: String, required: true, maxLength: 200 }, // 公司营业期限终止日期 "长期"表示为"29991231"
|
|
|
|
|
|
+ valid_period: { type: String, required: false, maxLength: 200 }, // 公司营业期限终止日期 "长期"表示为"29991231"
|
|
person: { type: String, required: true, maxLength: 200 }, // 法定代表人 必填
|
|
person: { type: String, required: true, maxLength: 200 }, // 法定代表人 必填
|
|
opening_bank: { type: String, required: true, maxLength: 200 }, // 开户行 必填
|
|
opening_bank: { type: String, required: true, maxLength: 200 }, // 开户行 必填
|
|
status: { type: String, required: false, maxLength: 200, default: '1' }, // 认证状态,0-认证中,1-认证通过,2-认证失败 改为默认认证通过
|
|
status: { type: String, required: false, maxLength: 200, default: '1' }, // 认证状态,0-认证中,1-认证通过,2-认证失败 改为默认认证通过
|
|
|
|
|
|
- // business_license: { type: String, required: false, maxLength: 200 }, // 营业执照图片
|
|
|
|
|
|
+ business_license: { type: String }, // 营业执照图片 -- 存base64码
|
|
// establish_date: { type: String, required: false, maxLength: 200 }, // 成立日期
|
|
// establish_date: { type: String, required: false, maxLength: 200 }, // 成立日期
|
|
// due_date: { type: String, required: false, maxLength: 200 }, // 营业到期日期
|
|
// due_date: { type: String, required: false, maxLength: 200 }, // 营业到期日期
|
|
// type: { type: String, required: false, maxLength: 200 }, // 企业类型
|
|
// type: { type: String, required: false, maxLength: 200 }, // 企业类型
|