8 lines
357 B
JavaScript
8 lines
357 B
JavaScript
"use strict";
|
|
const HouseOccupantsHouseRelationEnum = {
|
|
"Owner": { "text": "产权人", "color": "#2db7f5", "value": "Owner" },
|
|
"Resident": { "text": "住户", "color": "#87d068", "value": "Resident" },
|
|
"Tenant": { "text": "租客", "color": "#fa8c16", "value": "Tenant" }
|
|
};
|
|
exports.HouseOccupantsHouseRelationEnum = HouseOccupantsHouseRelationEnum;
|