巴林闲侠
2 years ago
39 changed files with 2141 additions and 685 deletions
@ -0,0 +1,286 @@ |
|||
/* eslint-disable*/ |
|||
'use strict'; |
|||
|
|||
module.exports = dc => { |
|||
const DataTypes = dc.ORM; |
|||
const sequelize = dc.orm; |
|||
const MunicipalBusiness = sequelize.define("municipalBusiness", { |
|||
id: { |
|||
type: DataTypes.INTEGER, |
|||
allowNull: false, |
|||
defaultValue: null, |
|||
comment: null, |
|||
primaryKey: true, |
|||
field: "id", |
|||
autoIncrement: true, |
|||
unique: "municipal_business_id_uindex" |
|||
}, |
|||
nameOfBusinessOwner: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "业户名称", |
|||
primaryKey: false, |
|||
field: "name_of_business_owner", |
|||
autoIncrement: false |
|||
}, |
|||
productName: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "品名", |
|||
primaryKey: false, |
|||
field: "product_name", |
|||
autoIncrement: false |
|||
}, |
|||
creditSocialCode: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "信用社会代码", |
|||
primaryKey: false, |
|||
field: "credit_social_code", |
|||
autoIncrement: false |
|||
}, |
|||
administrativeDivision: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "行政区划", |
|||
primaryKey: false, |
|||
field: "administrative_division", |
|||
autoIncrement: false |
|||
}, |
|||
economicNature: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "经济性质", |
|||
primaryKey: false, |
|||
field: "economic_nature", |
|||
autoIncrement: false |
|||
}, |
|||
address: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "地址", |
|||
primaryKey: false, |
|||
field: "address", |
|||
autoIncrement: false |
|||
}, |
|||
contactNumber: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "联系电话", |
|||
primaryKey: false, |
|||
field: "contact_number", |
|||
autoIncrement: false |
|||
}, |
|||
email: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "电子邮箱", |
|||
primaryKey: false, |
|||
field: "email", |
|||
autoIncrement: false |
|||
}, |
|||
legalRepresentative: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "法定代表人", |
|||
primaryKey: false, |
|||
field: "legal_representative", |
|||
autoIncrement: false |
|||
}, |
|||
typeOfLegalPersonCertificate: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "法人证件类型", |
|||
primaryKey: false, |
|||
field: "type_of_legal_person_certificate", |
|||
autoIncrement: false |
|||
}, |
|||
natureOfTransportation: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "运输性质", |
|||
primaryKey: false, |
|||
field: "nature_of_transportation", |
|||
autoIncrement: false |
|||
}, |
|||
legalPersonCertificateNumber: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "法人证件号码", |
|||
primaryKey: false, |
|||
field: "legal_person_certificate_number", |
|||
autoIncrement: false |
|||
}, |
|||
telephoneNumberOfLegalRepresentative: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "法定代表人电话", |
|||
primaryKey: false, |
|||
field: "telephone_number_of_legal_representative", |
|||
autoIncrement: false |
|||
}, |
|||
nameOfThePersonInChargeOfTheBusiness: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "经营业户负责人姓名", |
|||
primaryKey: false, |
|||
field: "name_of_the_person_in_charge_of_the_business", |
|||
autoIncrement: false |
|||
}, |
|||
telephoneNumberOfThePersonInChargeOfTheBusiness: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "经营业户负责人电话号码", |
|||
primaryKey: false, |
|||
field: "telephone_number_of_the_person_in_charge_of_the_business", |
|||
autoIncrement: false |
|||
}, |
|||
handledBy: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "经办人", |
|||
primaryKey: false, |
|||
field: "handled_by", |
|||
autoIncrement: false |
|||
}, |
|||
phoneNumberOfHandler: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "经办人电话", |
|||
primaryKey: false, |
|||
field: "phone_number_of_handler", |
|||
autoIncrement: false |
|||
}, |
|||
natureOfBusiness: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "经营范围", |
|||
primaryKey: false, |
|||
field: "nature_of_business", |
|||
autoIncrement: false |
|||
}, |
|||
businessStatus: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "经营状态", |
|||
primaryKey: false, |
|||
field: "business_status", |
|||
autoIncrement: false |
|||
}, |
|||
businessLicenseNo: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "经营许可证号", |
|||
primaryKey: false, |
|||
field: "business_license_no", |
|||
autoIncrement: false |
|||
}, |
|||
fromTheExpiryDate: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "有效期起", |
|||
primaryKey: false, |
|||
field: "from_the_expiry_date", |
|||
autoIncrement: false |
|||
}, |
|||
expiryDate: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "有效期止", |
|||
primaryKey: false, |
|||
field: "expiry_date", |
|||
autoIncrement: false |
|||
}, |
|||
issuingAuthority: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "发证机构", |
|||
primaryKey: false, |
|||
field: "issuing_authority", |
|||
autoIncrement: false |
|||
}, |
|||
dateOfIssuance: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "核发日期", |
|||
primaryKey: false, |
|||
field: "date_of_issuance", |
|||
autoIncrement: false |
|||
}, |
|||
licenseCategory: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "证照类别", |
|||
primaryKey: false, |
|||
field: "license_category", |
|||
autoIncrement: false |
|||
}, |
|||
licenseIssuanceType: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "证照发放类型", |
|||
primaryKey: false, |
|||
field: "license_issuance_type", |
|||
autoIncrement: false |
|||
}, |
|||
numberOfSharedVehicles: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "共有车辆数", |
|||
primaryKey: false, |
|||
field: "number_of_shared_vehicles", |
|||
autoIncrement: false |
|||
}, |
|||
creationDate: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "创建日期", |
|||
primaryKey: false, |
|||
field: "creation_date", |
|||
autoIncrement: false |
|||
}, |
|||
type: { |
|||
type: DataTypes.STRING, |
|||
allowNull: false, |
|||
defaultValue: null, |
|||
comment: "类型 出租车/危货", |
|||
primaryKey: false, |
|||
field: "type", |
|||
autoIncrement: false |
|||
} |
|||
}, { |
|||
tableName: "municipal_business", |
|||
comment: "", |
|||
indexes: [] |
|||
}); |
|||
dc.models.MunicipalBusiness = MunicipalBusiness; |
|||
return MunicipalBusiness; |
|||
}; |
@ -0,0 +1,385 @@ |
|||
/* eslint-disable*/ |
|||
'use strict'; |
|||
|
|||
module.exports = dc => { |
|||
const DataTypes = dc.ORM; |
|||
const sequelize = dc.orm; |
|||
const MunicipalVehicle = sequelize.define("municipalVehicle", { |
|||
id: { |
|||
type: DataTypes.INTEGER, |
|||
allowNull: false, |
|||
defaultValue: null, |
|||
comment: null, |
|||
primaryKey: true, |
|||
field: "id", |
|||
autoIncrement: true, |
|||
unique: "municipal_vehicle_id_uindex" |
|||
}, |
|||
nameOfBusinessOwner: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "业户名称", |
|||
primaryKey: false, |
|||
field: "name_of_business_owner", |
|||
autoIncrement: false |
|||
}, |
|||
productName: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "品名", |
|||
primaryKey: false, |
|||
field: "product_name", |
|||
autoIncrement: false |
|||
}, |
|||
vehicleRegistry: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车籍地", |
|||
primaryKey: false, |
|||
field: "vehicle_registry", |
|||
autoIncrement: false |
|||
}, |
|||
licensePlateNumber: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车牌号", |
|||
primaryKey: false, |
|||
field: "license_plate_number", |
|||
autoIncrement: false |
|||
}, |
|||
fuelType: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "燃料类型", |
|||
primaryKey: false, |
|||
field: "fuel_type", |
|||
autoIncrement: false |
|||
}, |
|||
address: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "住址", |
|||
primaryKey: false, |
|||
field: "address", |
|||
autoIncrement: false |
|||
}, |
|||
economicNature: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "经济性质", |
|||
primaryKey: false, |
|||
field: "economic_nature", |
|||
autoIncrement: false |
|||
}, |
|||
approvedPassengerCapacity: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "核定载客位数", |
|||
primaryKey: false, |
|||
field: "approved_passenger_capacity", |
|||
autoIncrement: false |
|||
}, |
|||
approvedLoadMass: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "核定载质量", |
|||
primaryKey: false, |
|||
field: "approved_load_mass", |
|||
autoIncrement: false |
|||
}, |
|||
numberOfVehicleAxles: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车辆车轴数", |
|||
primaryKey: false, |
|||
field: "number_of_vehicle_axles", |
|||
autoIncrement: false |
|||
}, |
|||
vehicleBrand: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车辆厂牌", |
|||
primaryKey: false, |
|||
field: "vehicle_brand", |
|||
autoIncrement: false |
|||
}, |
|||
natureOfBusiness: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "经营范围", |
|||
primaryKey: false, |
|||
field: "nature_of_business", |
|||
autoIncrement: false |
|||
}, |
|||
vehicleOperationStatus: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车辆营运状态", |
|||
primaryKey: false, |
|||
field: "vehicle_operation_status", |
|||
autoIncrement: false |
|||
}, |
|||
busTypeAndClass: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "客车类型与等级", |
|||
primaryKey: false, |
|||
field: "bus_type_and_class", |
|||
autoIncrement: false |
|||
}, |
|||
annualReviewResults: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "年审结果", |
|||
primaryKey: false, |
|||
field: "annual_review_results", |
|||
autoIncrement: false |
|||
}, |
|||
dateOfThisAnnualReview: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "本次年审日期", |
|||
primaryKey: false, |
|||
field: "date_of_this_annual_review", |
|||
autoIncrement: false |
|||
}, |
|||
dateOfNextAnnualReview: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "下次年审日期", |
|||
primaryKey: false, |
|||
field: "date_of_next_annual_review", |
|||
autoIncrement: false |
|||
}, |
|||
dateOfRegistration: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "注册登记日期", |
|||
primaryKey: false, |
|||
field: "date_of_registration", |
|||
autoIncrement: false |
|||
}, |
|||
sourceOfTransportationCapacity: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "运力来源", |
|||
primaryKey: false, |
|||
field: "source_of_transportation_capacity", |
|||
autoIncrement: false |
|||
}, |
|||
fromTheExpiryDate: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "有效期起", |
|||
primaryKey: false, |
|||
field: "from_the_expiry_date", |
|||
autoIncrement: false |
|||
}, |
|||
expiryDate: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "有效期止", |
|||
primaryKey: false, |
|||
field: "expiry_date", |
|||
autoIncrement: false |
|||
}, |
|||
engineDisplacement: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "发动机排量", |
|||
primaryKey: false, |
|||
field: "engine_displacement", |
|||
autoIncrement: false |
|||
}, |
|||
engineNumber: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "发动机号", |
|||
primaryKey: false, |
|||
field: "engine_number", |
|||
autoIncrement: false |
|||
}, |
|||
vehicleEnginePower: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车辆发动机功率", |
|||
primaryKey: false, |
|||
field: "vehicle_engine_power", |
|||
autoIncrement: false |
|||
}, |
|||
businessLicenseNo: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "经营许可证号", |
|||
primaryKey: false, |
|||
field: "business_license_no", |
|||
autoIncrement: false |
|||
}, |
|||
licensePlateColor: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车牌颜色", |
|||
primaryKey: false, |
|||
field: "license_plate_color", |
|||
autoIncrement: false |
|||
}, |
|||
totalVehicleMass: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车辆总质量", |
|||
primaryKey: false, |
|||
field: "total_vehicle_mass", |
|||
autoIncrement: false |
|||
}, |
|||
totalQuasiTractionMassOfVehicle: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车辆准牵引总质量", |
|||
primaryKey: false, |
|||
field: "total_quasi_traction_mass_of_vehicle", |
|||
autoIncrement: false |
|||
}, |
|||
roadTransportCertificateNo: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "道路运输证号", |
|||
primaryKey: false, |
|||
field: "road_transport_certificate_no", |
|||
autoIncrement: false |
|||
}, |
|||
vehicleHeight: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车辆车高", |
|||
primaryKey: false, |
|||
field: "vehicle_height", |
|||
autoIncrement: false |
|||
}, |
|||
vehicleConductor: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车辆车长", |
|||
primaryKey: false, |
|||
field: "vehicle_conductor", |
|||
autoIncrement: false |
|||
}, |
|||
vehicleWidth: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车辆车宽", |
|||
primaryKey: false, |
|||
field: "vehicle_width", |
|||
autoIncrement: false |
|||
}, |
|||
vehicleType: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车辆类型", |
|||
primaryKey: false, |
|||
field: "vehicle_type", |
|||
autoIncrement: false |
|||
}, |
|||
vehicleTypeWithDrivingLicense: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "行驶证车辆类型", |
|||
primaryKey: false, |
|||
field: "vehicle_type_with_driving_license", |
|||
autoIncrement: false |
|||
}, |
|||
vehicleWheelbase: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "车辆轴距", |
|||
primaryKey: false, |
|||
field: "vehicle_wheelbase", |
|||
autoIncrement: false |
|||
}, |
|||
ratingDate: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "等级评定日期", |
|||
primaryKey: false, |
|||
field: "rating_date", |
|||
autoIncrement: false |
|||
}, |
|||
technicalEvaluationGrade: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "技术评定等级", |
|||
primaryKey: false, |
|||
field: "technical_evaluation_grade", |
|||
autoIncrement: false |
|||
}, |
|||
nextRatingDate: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "下次等级评定日期", |
|||
primaryKey: false, |
|||
field: "next_rating_date", |
|||
autoIncrement: false |
|||
}, |
|||
creationDate: { |
|||
type: DataTypes.STRING, |
|||
allowNull: true, |
|||
defaultValue: null, |
|||
comment: "创建日期", |
|||
primaryKey: false, |
|||
field: "creation_date", |
|||
autoIncrement: false |
|||
}, |
|||
type: { |
|||
type: DataTypes.STRING, |
|||
allowNull: false, |
|||
defaultValue: null, |
|||
comment: "类型 出租车/危货", |
|||
primaryKey: false, |
|||
field: "type", |
|||
autoIncrement: false |
|||
} |
|||
}, { |
|||
tableName: "municipal_vehicle", |
|||
comment: "", |
|||
indexes: [] |
|||
}); |
|||
dc.models.MunicipalVehicle = MunicipalVehicle; |
|||
return MunicipalVehicle; |
|||
}; |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,30 @@ |
|||
{ |
|||
"业户名称": "nameOfBusinessOwner", |
|||
"品名": "productName", |
|||
"信用社会代码": "creditSocialCode", |
|||
"行政区划": "administrativeDivision", |
|||
"经济性质": "economicNature", |
|||
"地址": "address", |
|||
"联系电话": "contactNumber", |
|||
"电子邮箱": "email", |
|||
"法定代表人": "legalRepresentative", |
|||
"法人证件类型": "typeOfLegalPersonCertificate", |
|||
"运输性质": "natureOfTransportation", |
|||
"法人证件号码": "legalPersonCertificateNumber", |
|||
"法定代表人电话": "telephoneNumberOfLegalRepresentative", |
|||
"经营业户负责人姓名": "nameOfThePersonInChargeOfTheBusiness", |
|||
"经营业户负责人电话号码": "telephoneNumberOfThePersonInChargeOfTheBusiness", |
|||
"经办人": "handledBy", |
|||
"经办人电话": "phoneNumberOfHandler", |
|||
"经营范围": "natureOfBusiness", |
|||
"经营状态": "businessStatus", |
|||
"经营许可证号": "businessLicenseNo", |
|||
"有效期起": "fromTheExpiryDate", |
|||
"有效期止": "expiryDate", |
|||
"发证机构": "issuingAuthority", |
|||
"核发日期": "dateOfIssuance", |
|||
"证照类别": "licenseCategory", |
|||
"证照发放类型": "licenseIssuanceType", |
|||
"共有车辆数": "numberOfSharedVehicles", |
|||
"创建日期": "creationDate" |
|||
} |
@ -0,0 +1,30 @@ |
|||
{ |
|||
"nameOfBusinessOwner": "业户名称", |
|||
"productName": "品名", |
|||
"creditSocialCode": "信用社会代码", |
|||
"administrativeDivision": "行政区划", |
|||
"economicNature": "经济性质", |
|||
"address": "地址", |
|||
"contactNumber": "联系电话", |
|||
"email": "电子邮箱", |
|||
"legalRepresentative": "法定代表人", |
|||
"typeOfLegalPersonCertificate": "法人证件类型", |
|||
"natureOfTransportation": "运输性质", |
|||
"legalPersonCertificateNumber": "法人证件号码", |
|||
"telephoneNumberOfLegalRepresentative": "法定代表人电话", |
|||
"nameOfThePersonInChargeOfTheBusiness": "经营业户负责人姓名", |
|||
"telephoneNumberOfThePersonInChargeOfTheBusiness": "经营业户负责人电话号码", |
|||
"handledBy": "经办人", |
|||
"phoneNumberOfHandler": "经办人电话", |
|||
"natureOfBusiness": "经营范围", |
|||
"businessStatus": "经营状态", |
|||
"businessLicenseNo": "经营许可证号", |
|||
"fromTheExpiryDate": "有效期起", |
|||
"expiryDate": "有效期止", |
|||
"issuingAuthority": "发证机构", |
|||
"dateOfIssuance": "核发日期", |
|||
"licenseCategory": "证照类别", |
|||
"licenseIssuanceType": "证照发放类型", |
|||
"numberOfSharedVehicles": "共有车辆数", |
|||
"creationDate": "创建日期" |
|||
} |
@ -0,0 +1,30 @@ |
|||
{ |
|||
"业户名称": "name_of_business_owner", |
|||
"品名": "product_Name", |
|||
"信用社会代码": "credit_social_code", |
|||
"行政区划": "administrative_division", |
|||
"经济性质": "economic_nature", |
|||
"地址": "address", |
|||
"联系电话": "contact_number", |
|||
"电子邮箱": "email", |
|||
"法定代表人": "legal_representative", |
|||
"法人证件类型": "type_of_legal_person_certificate", |
|||
"运输性质": "nature_of_transportation", |
|||
"法人证件号码": "legal_person_certificate_number", |
|||
"法定代表人电话": "telephone_number_of_legal_representative", |
|||
"经营业户负责人姓名": "name_of_the_person_in_charge_of_the_business", |
|||
"经营业户负责人电话号码": "telephone_number_of_the_person_in_charge_of_the_business", |
|||
"经办人": "handled_by", |
|||
"经办人电话": "phone_number_of_handler", |
|||
"经营范围": "nature_of_Business", |
|||
"经营状态": "business_status", |
|||
"经营许可证号": "business_license_No", |
|||
"有效期起": "from_the_expiry_date", |
|||
"有效期止": "expiry_date", |
|||
"发证机构": "issuing_authority", |
|||
"核发日期": "date_of_issuance", |
|||
"证照类别": "license_category", |
|||
"证照发放类型": "license_issuance_type", |
|||
"共有车辆数": "number_of_shared_vehicles", |
|||
"创建日期": "creation_date" |
|||
} |
@ -0,0 +1,34 @@ |
|||
-- 运政业户 |
|||
|
|||
CREATE TABLE if not exists "municipal_business" ( id serial not null ); |
|||
|
|||
CREATE unique index if not exists municipal_business_id_uindex |
|||
ON municipal_business (id); alter TABLE municipal_business add constraint municipal_business_pk primary key (id); alter TABLE municipal_business add Name_Of_Business_Owner varchar(1024); comment |
|||
ON column municipal_business.Name_Of_Business_Owner is '业户名称'; alter TABLE municipal_business add Product_Name varchar(1024); comment |
|||
ON column municipal_business.Product_Name is '品名'; alter TABLE municipal_business add Credit_Social_Code varchar(1024); comment |
|||
ON column municipal_business.Credit_Social_Code is '信用社会代码'; alter TABLE municipal_business add Administrative_Division varchar(1024); comment |
|||
ON column municipal_business.Administrative_Division is '行政区划'; alter TABLE municipal_business add Economic_Nature varchar(1024); comment |
|||
ON column municipal_business.Economic_Nature is '经济性质'; alter TABLE municipal_business add Address varchar(1024); comment |
|||
ON column municipal_business.Address is '地址'; alter TABLE municipal_business add Contact_Number varchar(1024); comment |
|||
ON column municipal_business.Contact_Number is '联系电话'; alter TABLE municipal_business add Email varchar(1024); comment |
|||
ON column municipal_business.Email is '电子邮箱'; alter TABLE municipal_business add Legal_Representative varchar(1024); comment |
|||
ON column municipal_business.Legal_Representative is '法定代表人'; alter TABLE municipal_business add Type_Of_Legal_Person_Certificate varchar(1024); comment |
|||
ON column municipal_business.Type_Of_Legal_Person_Certificate is '法人证件类型'; alter TABLE municipal_business add Nature_Of_Transportation varchar(1024); comment |
|||
ON column municipal_business.Nature_Of_Transportation is '运输性质'; alter TABLE municipal_business add Legal_Person_Certificate_Number varchar(1024); comment |
|||
ON column municipal_business.Legal_Person_Certificate_Number is '法人证件号码'; alter TABLE municipal_business add Telephone_Number_Of_Legal_Representative varchar(1024); comment |
|||
ON column municipal_business.Telephone_Number_Of_Legal_Representative is '法定代表人电话'; alter TABLE municipal_business add Name_Of_The_Person_In_Charge_Of_The_Business varchar(1024); comment |
|||
ON column municipal_business.Name_Of_The_Person_In_Charge_Of_The_Business is '经营业户负责人姓名'; alter TABLE municipal_business add Telephone_Number_Of_The_Person_In_Charge_Of_The_Business varchar(1024); comment |
|||
ON column municipal_business.Telephone_Number_Of_The_Person_In_Charge_Of_The_Business is '经营业户负责人电话号码'; alter TABLE municipal_business add Handled_By varchar(1024); comment |
|||
ON column municipal_business.Handled_By is '经办人'; alter TABLE municipal_business add Phone_Number_Of_Handler varchar(1024); comment |
|||
ON column municipal_business.Phone_Number_Of_Handler is '经办人电话'; alter TABLE municipal_business add Nature_Of_Business varchar(1024); comment |
|||
ON column municipal_business.Nature_Of_Business is '经营范围'; alter TABLE municipal_business add Business_Status varchar(1024); comment |
|||
ON column municipal_business.Business_Status is '经营状态'; alter TABLE municipal_business add Business_License_No varchar(1024); comment |
|||
ON column municipal_business.Business_License_No is '经营许可证号'; alter TABLE municipal_business add From_The_Expiry_Date varchar(1024); comment |
|||
ON column municipal_business.From_The_Expiry_Date is '有效期起'; alter TABLE municipal_business add Expiry_Date varchar(1024); comment |
|||
ON column municipal_business.Expiry_Date is '有效期止'; alter TABLE municipal_business add Issuing_Authority varchar(1024); comment |
|||
ON column municipal_business.Issuing_Authority is '发证机构'; alter TABLE municipal_business add Date_Of_Issuance varchar(1024); comment |
|||
ON column municipal_business.Date_Of_Issuance is '核发日期'; alter TABLE municipal_business add License_Category varchar(1024); comment |
|||
ON column municipal_business.License_Category is '证照类别'; alter TABLE municipal_business add License_Issuance_Type varchar(1024); comment |
|||
ON column municipal_business.License_Issuance_Type is '证照发放类型'; alter TABLE municipal_business add Number_Of_Shared_Vehicles varchar(1024); comment |
|||
ON column municipal_business.Number_Of_Shared_Vehicles is '共有车辆数'; alter TABLE municipal_business add Creation_Date varchar(1024); comment |
|||
ON column municipal_business.Creation_Date is '创建日期'; |
@ -0,0 +1,41 @@ |
|||
{ |
|||
"业户名称": "nameOfBusinessOwner", |
|||
"品名": "productName", |
|||
"车籍地": "vehicleRegistry", |
|||
"车牌号": "licensePlateNumber", |
|||
"燃料类型": "fuelType", |
|||
"住址": "address", |
|||
"经济性质": "economicNature", |
|||
"核定载客位数": "approvedPassengerCapacity", |
|||
"核定载质量": "approvedLoadMass", |
|||
"车辆车轴数": "numberOfVehicleAxles", |
|||
"车辆厂牌": "vehicleBrand", |
|||
"经营范围": "natureOfBusiness", |
|||
"车辆营运状态": "vehicleOperationStatus", |
|||
"客车类型与等级": "busTypeAndClass", |
|||
"年审结果": "annualReviewResults", |
|||
"本次年审日期": "dateOfThisAnnualReview", |
|||
"下次年审日期": "dateOfNextAnnualReview", |
|||
"注册登记日期": "dateOfRegistration", |
|||
"运力来源": "sourceOfTransportationCapacity", |
|||
"有效期起": "fromTheExpiryDate", |
|||
"有效期止": "expiryDate", |
|||
"发动机排量": "engineDisplacement", |
|||
"发动机号": "engineNumber", |
|||
"车辆发动机功率": "vehicleEnginePower", |
|||
"经营许可证号": "businessLicenseNo", |
|||
"车牌颜色": "licensePlateColor", |
|||
"车辆总质量": "totalVehicleMass", |
|||
"车辆准牵引总质量": "totalQuasiTractionMassOfVehicle", |
|||
"道路运输证号": "roadTransportCertificateNo", |
|||
"车辆车高": "vehicleHeight", |
|||
"车辆车长": "vehicleConductor", |
|||
"车辆车宽": "vehicleWidth", |
|||
"车辆类型": "vehicleType", |
|||
"行驶证车辆类型": "vehicleTypeWithDrivingLicense", |
|||
"车辆轴距": "vehicleWheelbase", |
|||
"等级评定日期": "ratingDate", |
|||
"技术评定等级": "technicalEvaluationGrade", |
|||
"下次等级评定日期": "nextRatingDate", |
|||
"创建日期": "creationDate" |
|||
} |
@ -0,0 +1,41 @@ |
|||
{ |
|||
"nameOfBusinessOwner": "业户名称", |
|||
"productName": "品名", |
|||
"vehicleRegistry": "车籍地", |
|||
"licensePlateNumber": "车牌号", |
|||
"fuelType": "燃料类型", |
|||
"address": "住址", |
|||
"economicNature": "经济性质", |
|||
"approvedPassengerCapacity": "核定载客位数", |
|||
"approvedLoadMass": "核定载质量", |
|||
"numberOfVehicleAxles": "车辆车轴数", |
|||
"vehicleBrand": "车辆厂牌", |
|||
"natureOfBusiness": "经营范围", |
|||
"vehicleOperationStatus": "车辆营运状态", |
|||
"busTypeAndClass": "客车类型与等级", |
|||
"annualReviewResults": "年审结果", |
|||
"dateOfThisAnnualReview": "本次年审日期", |
|||
"dateOfNextAnnualReview": "下次年审日期", |
|||
"dateOfRegistration": "注册登记日期", |
|||
"sourceOfTransportationCapacity": "运力来源", |
|||
"fromTheExpiryDate": "有效期起", |
|||
"expiryDate": "有效期止", |
|||
"engineDisplacement": "发动机排量", |
|||
"engineNumber": "发动机号", |
|||
"vehicleEnginePower": "车辆发动机功率", |
|||
"businessLicenseNo": "经营许可证号", |
|||
"licensePlateColor": "车牌颜色", |
|||
"totalVehicleMass": "车辆总质量", |
|||
"totalQuasiTractionMassOfVehicle": "车辆准牵引总质量", |
|||
"roadTransportCertificateNo": "道路运输证号", |
|||
"vehicleHeight": "车辆车高", |
|||
"vehicleConductor": "车辆车长", |
|||
"vehicleWidth": "车辆车宽", |
|||
"vehicleType": "车辆类型", |
|||
"vehicleTypeWithDrivingLicense": "行驶证车辆类型", |
|||
"vehicleWheelbase": "车辆轴距", |
|||
"ratingDate": "等级评定日期", |
|||
"technicalEvaluationGrade": "技术评定等级", |
|||
"nextRatingDate": "下次等级评定日期", |
|||
"creationDate": "创建日期" |
|||
} |
@ -0,0 +1,41 @@ |
|||
{ |
|||
"业户名称": "name_of_business_owner", |
|||
"品名": "product_Name", |
|||
"车籍地": "vehicle_registry", |
|||
"车牌号": "license_plate_number", |
|||
"燃料类型": "fuel_type", |
|||
"住址": "address", |
|||
"经济性质": "economic_nature", |
|||
"核定载客位数": "approved_passenger_capacity", |
|||
"核定载质量": "approved_load_mass", |
|||
"车辆车轴数": "number_of_vehicle_axles", |
|||
"车辆厂牌": "vehicle_brand", |
|||
"经营范围": "nature_of_Business", |
|||
"车辆营运状态": "vehicle_operation_status", |
|||
"客车类型与等级": "bus_type_and_class", |
|||
"年审结果": "annual_review_results", |
|||
"本次年审日期": "date_of_this_annual_review", |
|||
"下次年审日期": "date_of_next_annual_review", |
|||
"注册登记日期": "date_of_registration", |
|||
"运力来源": "source_of_transportation_capacity", |
|||
"有效期起": "from_the_expiry_date", |
|||
"有效期止": "expiry_date", |
|||
"发动机排量": "engine_displacement", |
|||
"发动机号": "engine_number", |
|||
"车辆发动机功率": "vehicle_engine_power", |
|||
"经营许可证号": "business_license_No", |
|||
"车牌颜色": "license_plate_color", |
|||
"车辆总质量": "total_vehicle_mass", |
|||
"车辆准牵引总质量": "total_quasi_traction_mass_of_vehicle", |
|||
"道路运输证号": "road_Transport_Certificate_No", |
|||
"车辆车高": "vehicle_height", |
|||
"车辆车长": "vehicle_conductor", |
|||
"车辆车宽": "vehicle_width", |
|||
"车辆类型": "vehicle_type", |
|||
"行驶证车辆类型": "vehicle_type_with_driving_license", |
|||
"车辆轴距": "vehicle_wheelbase", |
|||
"等级评定日期": "rating_date", |
|||
"技术评定等级": "technical_evaluation_grade", |
|||
"下次等级评定日期": "next_rating_date", |
|||
"创建日期": "creation_date" |
|||
} |
@ -0,0 +1,45 @@ |
|||
-- 运政车辆 |
|||
|
|||
CREATE TABLE if not exists "municipal_vehicle" ( id serial not null ); |
|||
|
|||
CREATE unique index if not exists municipal_vehicle_id_uindex |
|||
ON municipal_vehicle (id); alter TABLE municipal_vehicle add constraint municipal_vehicle_pk primary key (id); alter TABLE municipal_vehicle add Name_Of_Business_Owner varchar(1024); comment |
|||
ON column municipal_vehicle.Name_Of_Business_Owner is '业户名称'; alter TABLE municipal_vehicle add Product_Name varchar(1024); comment |
|||
ON column municipal_vehicle.Product_Name is '品名'; alter TABLE municipal_vehicle add Vehicle_Registry varchar(1024); comment |
|||
ON column municipal_vehicle.Vehicle_Registry is '车籍地'; alter TABLE municipal_vehicle add License_Plate_Number varchar(1024); comment |
|||
ON column municipal_vehicle.License_Plate_Number is '车牌号'; alter TABLE municipal_vehicle add Fuel_Type varchar(1024); comment |
|||
ON column municipal_vehicle.Fuel_Type is '燃料类型'; alter TABLE municipal_vehicle add Address varchar(1024); comment |
|||
ON column municipal_vehicle.Address is '住址'; alter TABLE municipal_vehicle add Economic_Nature varchar(1024); comment |
|||
ON column municipal_vehicle.Economic_Nature is '经济性质'; alter TABLE municipal_vehicle add Approved_Passenger_Capacity varchar(1024); comment |
|||
ON column municipal_vehicle.Approved_Passenger_Capacity is '核定载客位数'; alter TABLE municipal_vehicle add Approved_Load_Mass varchar(1024); comment |
|||
ON column municipal_vehicle.Approved_Load_Mass is '核定载质量'; alter TABLE municipal_vehicle add Number_Of_Vehicle_Axles varchar(1024); comment |
|||
ON column municipal_vehicle.Number_Of_Vehicle_Axles is '车辆车轴数'; alter TABLE municipal_vehicle add Vehicle_Brand varchar(1024); comment |
|||
ON column municipal_vehicle.Vehicle_Brand is '车辆厂牌'; alter TABLE municipal_vehicle add Nature_Of_Business varchar(1024); comment |
|||
ON column municipal_vehicle.Nature_Of_Business is '经营范围'; alter TABLE municipal_vehicle add Vehicle_Operation_Status varchar(1024); comment |
|||
ON column municipal_vehicle.Vehicle_Operation_Status is '车辆营运状态'; alter TABLE municipal_vehicle add Bus_Type_And_Class varchar(1024); comment |
|||
ON column municipal_vehicle.Bus_Type_And_Class is '客车类型与等级'; alter TABLE municipal_vehicle add Annual_Review_Results varchar(1024); comment |
|||
ON column municipal_vehicle.Annual_Review_Results is '年审结果'; alter TABLE municipal_vehicle add Date_Of_This_Annual_Review varchar(1024); comment |
|||
ON column municipal_vehicle.Date_Of_This_Annual_Review is '本次年审日期'; alter TABLE municipal_vehicle add Date_Of_Next_Annual_Review varchar(1024); comment |
|||
ON column municipal_vehicle.Date_Of_Next_Annual_Review is '下次年审日期'; alter TABLE municipal_vehicle add Date_Of_Registration varchar(1024); comment |
|||
ON column municipal_vehicle.Date_Of_Registration is '注册登记日期'; alter TABLE municipal_vehicle add Source_Of_Transportation_Capacity varchar(1024); comment |
|||
ON column municipal_vehicle.Source_Of_Transportation_Capacity is '运力来源'; alter TABLE municipal_vehicle add From_The_Expiry_Date varchar(1024); comment |
|||
ON column municipal_vehicle.From_The_Expiry_Date is '有效期起'; alter TABLE municipal_vehicle add Expiry_Date varchar(1024); comment |
|||
ON column municipal_vehicle.Expiry_Date is '有效期止'; alter TABLE municipal_vehicle add Engine_Displacement varchar(1024); comment |
|||
ON column municipal_vehicle.Engine_Displacement is '发动机排量'; alter TABLE municipal_vehicle add Engine_Number varchar(1024); comment |
|||
ON column municipal_vehicle.Engine_Number is '发动机号'; alter TABLE municipal_vehicle add Vehicle_Engine_Power varchar(1024); comment |
|||
ON column municipal_vehicle.Vehicle_Engine_Power is '车辆发动机功率'; alter TABLE municipal_vehicle add Business_License_No varchar(1024); comment |
|||
ON column municipal_vehicle.Business_License_No is '经营许可证号'; alter TABLE municipal_vehicle add License_Plate_Color varchar(1024); comment |
|||
ON column municipal_vehicle.License_Plate_Color is '车牌颜色'; alter TABLE municipal_vehicle add Total_Vehicle_Mass varchar(1024); comment |
|||
ON column municipal_vehicle.Total_Vehicle_Mass is '车辆总质量'; alter TABLE municipal_vehicle add Total_Quasi_Traction_Mass_Of_Vehicle varchar(1024); comment |
|||
ON column municipal_vehicle.Total_Quasi_Traction_Mass_Of_Vehicle is '车辆准牵引总质量'; alter TABLE municipal_vehicle add Road_Transport_Certificate_No varchar(1024); comment |
|||
ON column municipal_vehicle.Road_Transport_Certificate_No is '道路运输证号'; alter TABLE municipal_vehicle add Vehicle_Height varchar(1024); comment |
|||
ON column municipal_vehicle.Vehicle_Height is '车辆车高'; alter TABLE municipal_vehicle add Vehicle_Conductor varchar(1024); comment |
|||
ON column municipal_vehicle.Vehicle_Conductor is '车辆车长'; alter TABLE municipal_vehicle add Vehicle_Width varchar(1024); comment |
|||
ON column municipal_vehicle.Vehicle_Width is '车辆车宽'; alter TABLE municipal_vehicle add Vehicle_Type varchar(1024); comment |
|||
ON column municipal_vehicle.Vehicle_Type is '车辆类型'; alter TABLE municipal_vehicle add Vehicle_Type_With_Driving_License varchar(1024); comment |
|||
ON column municipal_vehicle.Vehicle_Type_With_Driving_License is '行驶证车辆类型'; alter TABLE municipal_vehicle add Vehicle_Wheelbase varchar(1024); comment |
|||
ON column municipal_vehicle.Vehicle_Wheelbase is '车辆轴距'; alter TABLE municipal_vehicle add Rating_Date varchar(1024); comment |
|||
ON column municipal_vehicle.Rating_Date is '等级评定日期'; alter TABLE municipal_vehicle add Technical_Evaluation_Grade varchar(1024); comment |
|||
ON column municipal_vehicle.Technical_Evaluation_Grade is '技术评定等级'; alter TABLE municipal_vehicle add Next_Rating_Date varchar(1024); comment |
|||
ON column municipal_vehicle.Next_Rating_Date is '下次等级评定日期'; alter TABLE municipal_vehicle add Creation_Date varchar(1024); comment |
|||
ON column municipal_vehicle.Creation_Date is '创建日期'; |
@ -0,0 +1,50 @@ |
|||
{ |
|||
"routeName": "路线名称", |
|||
"routeCode": "路线代码", |
|||
"sectionNo": "路段序号", |
|||
"townshipCode": "乡镇编码", |
|||
"startingPlaceName": "起点地名", |
|||
"startStation": "起点桩号", |
|||
"categoryOfStartingPointAndDividingPoint": "起点分界点类别", |
|||
"stopPlaceName": "止点地名", |
|||
"categoryOfDeadCenterAndDividingPoint": "止点分界点类别", |
|||
"stopStation": "止点桩号", |
|||
"sectionType": "路段类型", |
|||
"natureOfRoadSection": "路段性质", |
|||
"completionTime": "建成时间", |
|||
"gBMAndCivilizedModelRoad": "GBM及文明样板路", |
|||
"landforms": "地貌", |
|||
"natureOfCharges": "收费性质", |
|||
"numberOfCulverts": "涵洞数量", |
|||
"technicalLevel": "技术等级", |
|||
"pavementType": "路面类型", |
|||
"pavementWidth": "路面宽度", |
|||
"subgradeWidth": "路基宽度", |
|||
"laneCharacteristics": "车道特征", |
|||
"whetherItIsOpenToTrafficInSunnyOrRainyDays": "是否晴雨通车", |
|||
"designSpeedPerHour": "设计时速", |
|||
"urbanManagementSectionOrNot": "是否城管路段", |
|||
"managementAndMaintenanceUnit": "管养单位", |
|||
"roadAdministrationUnit": "路政管理单位", |
|||
"alimentation": "列养情况", |
|||
"sourceOfListedMaintenanceFunds": "列养资金来源", |
|||
"curingTime": "养护时间", |
|||
"greeningMileage": "可绿化里程", |
|||
"greeningMileaged": "已绿化里程", |
|||
"typeOfRepeatedRoadSection": "重复道路路段类型", |
|||
"serialNumberOfRepeatedSection": "重复路段序号", |
|||
"repeatedSectionRouteCode": "重复路段路线编码", |
|||
"reportingUnit": "填报单位", |
|||
"reasonForChange": "变更原因", |
|||
"changeTime": "变更时间", |
|||
"whetherMaintenanceManagedHighway": "是否按干线公路管理接养", |
|||
"remarks": "备注", |
|||
"routeCodeOfLastYear": "上年路线编码", |
|||
"routeNameOfLastYear": "上年路线名称", |
|||
"startingStationOfLastYear": "上年起点桩号", |
|||
"lastYearsEndingPointStakeNumber": "上年止点桩号", |
|||
"graphicMileage": "图形里程", |
|||
"chainageMileage": "桩号里程", |
|||
"districtcounty": "所在区县", |
|||
"locationCity": "所在地市" |
|||
} |
Loading…
Reference in new issue