diff --git a/resource/sql/mysql.sql b/resource/sql/mysql.sql index 7c688abf0..4f47ff0ed 100644 --- a/resource/sql/mysql.sql +++ b/resource/sql/mysql.sql @@ -1,4 +1,4 @@ ---缴税人表主键自增 +# 缴税人表主键自增 alter table hrsa_tax_agent modify id bigint auto_increment; alter table hrsa_tax_rate_base modify id bigint auto_increment; alter table hrsa_tax_rate_detail modify id bigint auto_increment; @@ -7,7 +7,7 @@ alter table hrsa_add_up_situation modify id bigint auto_increment; alter table hrsa_other_deduction modify id bigint auto_increment; alter table hrsa_attend_quote_field modify id bigint auto_increment; alter table hrsa_attend_quote_sync_set modify id bigint auto_increment; -alter table hrsa_attend_quote_data modify id bigint auto_increment; +# alter table hrsa_attend_quote_data modify id bigint auto_increment; alter table hrsa_attend_quote_data_value modify id bigint auto_increment; alter table hrsa_salary_item modify id bigint auto_increment; @@ -29,19 +29,19 @@ alter table hrsa_formula_var modify id bigint auto_increment; alter table hrsa_salary_acct_result modify id bigint auto_increment; ---福利方案主键自增增加 +# 福利方案主键自增增加 alter table hrsa_social_security_scheme modify id bigint auto_increment; alter table hrsa_scheme_detail modify id bigint auto_increment; alter table hrsa_insurance_category modify id bigint auto_increment; ---福利档案 +# 福利档案 alter table hrsa_social_archives modify id bigint auto_increment; alter table hrsa_fund_archives modify id bigint auto_increment; alter table hrsa_other_archives modify id bigint auto_increment; ---福利台账 +# 福利台账 alter table hrsa_bill_batch modify id bigint auto_increment; alter table hrsa_bill_detail modify id bigint auto_increment; alter table hrsa_bill_detail_temp modify id bigint auto_increment; @@ -60,12 +60,12 @@ ADD COLUMN sob_default_item_group_id bigint(0) NOT NULL COMMENT '薪资账套默 ADD COLUMN sorted_index int(0) NOT NULL COMMENT '显示顺序' AFTER sob_default_item_group_id; --- 工资单发放 +# 工资单发放 alter table hrsa_salary_template modify id bigint auto_increment; ALTER TABLE hrsa_salary_template MODIFY background varchar (2000); --- 公式 +# 公式 CREATE TABLE hrsa_formula ( id bigint NOT NULL AUTO_INCREMENT, diff --git a/src/com/engine/salary/enums/salarysob/TargetTypeEnum.java b/src/com/engine/salary/enums/salarysob/TargetTypeEnum.java index fbb11bee2..961865c72 100644 --- a/src/com/engine/salary/enums/salarysob/TargetTypeEnum.java +++ b/src/com/engine/salary/enums/salarysob/TargetTypeEnum.java @@ -6,12 +6,13 @@ import com.engine.salary.enums.BaseEnum; import java.util.Objects; /** - * @description: 人员范围的对象类型 - * @author: xiajun - * @modified By: xiajun - * @date: Created in 11/22/21 11:32 AM - * @version:v1.0 - */ + * 人员范围的对象类型 + *
Copyright: Copyright (c) 2022
+ *Company: 泛微软件
+ * + * @author qiantao + * @version 1.0 + **/ public enum TargetTypeEnum implements BaseEnum