8 lines
369 B
JavaScript
8 lines
369 B
JavaScript
"use strict";
|
|
const HouseRegistersIdentityTypeEnum = {
|
|
"Owner": { "text": "产权人", "color": "#2db7f5", "value": "Owner" },
|
|
"Tenant": { "text": "租客", "color": "#87d068", "value": "Tenant" },
|
|
"CoResident": { "text": "同住人(亲属)", "color": "#108ee9", "value": "CoResident" }
|
|
};
|
|
exports.HouseRegistersIdentityTypeEnum = HouseRegistersIdentityTypeEnum;
|