From d83e8e364048387bfa5c4c1fd07002940abdf63f Mon Sep 17 00:00:00 2001 From: yupeng <roc__yu@163.com> Date: 星期三, 12 二月 2025 12:07:54 +0800 Subject: [PATCH] feat:更新线下支付接口,RedisCache添加循环取锁方法,其他 --- ruoyi-common/src/main/java/com/ruoyi/common/constant/DictConstants.java | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 insertions(+), 0 deletions(-) diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/constant/DictConstants.java b/ruoyi-common/src/main/java/com/ruoyi/common/constant/DictConstants.java index 73005e3..19a3caf 100644 --- a/ruoyi-common/src/main/java/com/ruoyi/common/constant/DictConstants.java +++ b/ruoyi-common/src/main/java/com/ruoyi/common/constant/DictConstants.java @@ -15,4 +15,32 @@ * 租户类型 */ 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"; + /** + * 账单类型 1=租金 2=押金 3=生活费用 + */ + public static final String DICT_TYPE_BILL_TYPE = "t_bill_type"; } -- Gitblit v1.7.1