package com.ruoyi.common.constant;
|
|
/**
|
* 缓存的key 常量
|
*
|
* @author ruoyi
|
*/
|
public class DictConstants
|
{
|
/**
|
* 租户属性
|
*/
|
public static final String DICT_TYPE_TENANT_ATTRIBUTE = "t_tenant_attribute";
|
/**
|
* 租户类型
|
*/
|
public static final String DICT_TYPE_TENANT_TYPE = "t_tenant_type";
|
/**
|
* 租赁状态 1=待出租 2=已出租 3=维修中
|
*/
|
public static final String DICT_TYPE_LEASE_STATUS = "t_lease_status";
|
/**
|
* 租金支付方式 1=月付 季付 年付
|
*/
|
public static final String DICT_TYPE_CONTRACT_PAY_TYPE = "t_contract_pay_type";
|
/**
|
* 业务属性 1住宅2商业3工业4车位5办公6仓储
|
*/
|
public static final String DICT_TYPE_BUSINESS_ATTRIBUTES = "t_business_attributes";
|
/**
|
* 合同状态 1=待提交 2=待审批 3=未签订 4=已签订 5=已驳回 6=已终止 7=待结算 8=已结算
|
*/
|
public static final String DICT_TYPE_CONTRACT_STATUS = "t_contract_status";
|
/**
|
* 验收状态 1=待验收 2=已验收
|
*/
|
public static final String DICT_TYPE_CHECK_STATUS = "t_check_status";
|
/**
|
* 缴费状态 1=未缴费 2=待确认 3=已缴费 4=已逾期 5=已失效
|
*/
|
public static final String DICT_TYPE_PAY_FEES_STATUS = "t_pay_fees_status";
|
}
|