|
@@ -34,6 +34,64 @@ object args_company_job {
|
|
|
, explode_args("defendant_info", "$.litigant_id", "defendant_info_id_explode")
|
|
|
)
|
|
|
)
|
|
|
+ , args_company_job("company_dishonest_info", Seq("case_no", "name")
|
|
|
+ , rowkey_udf = "md5(cleanup(concat_ws('',case_no_trim(case_no),get_fixed_val(keyno,name) )))"
|
|
|
+ , is_super_filter = false
|
|
|
+ , where = "case_no_trim(case_no) is not null and get_fixed_val(keyno,name) is not null"
|
|
|
+ )
|
|
|
+ , args_company_job("company_zxr_restrict", Seq("case_no", "person_name")
|
|
|
+ , rowkey_udf = "md5(cleanup(concat_ws('',case_no_trim(case_no),person_name )))"
|
|
|
+ , is_super_filter = false
|
|
|
+ , verify_company_id = false
|
|
|
+ , where = "case_no_trim(case_no) is not null and person_name is not null and length(trim(person_name))>=2 "
|
|
|
+ )
|
|
|
+
|
|
|
+ , args_company_job("company_equity_info", Seq("reg_number", "pledgee_info", "pledgor_info")
|
|
|
+ , rowkey_udf = "md5(cleanup(concat_ws('',reg_number,equity_info_rowkey(pledgee_info,pledgor_info) )))"
|
|
|
+ , is_super_filter = false
|
|
|
+
|
|
|
+ , explode_args = Seq(
|
|
|
+ explode_args("pledgor_info", "$.pledgor_id", "pledgor_keyno_explode")
|
|
|
+ , explode_args("pledgee_info", "$.pledgee_id", "pledgee_keyno_explode")
|
|
|
+ )
|
|
|
+
|
|
|
+ )
|
|
|
+ , args_company_job("company_land_mortgage", Seq("land_mark", "land_num", "other_item_num", "use_right_num")
|
|
|
+ , is_super_filter = false
|
|
|
+ )
|
|
|
+ , args_company_job("company_judicial_assistance", Seq("executed_person", "execute_notice_num", "type_state", "company_id")
|
|
|
+ , rowkey_udf = "md5(cleanup(concat_ws('',get_fixed_val(executed_person_id,executed_person),execute_notice_num,type_state,company_id )))"
|
|
|
+ , is_super_filter = false
|
|
|
+ )
|
|
|
+ , args_company_job("company_public_announcement", Seq("bill_num")
|
|
|
+ , rowkey_add_company_id = false
|
|
|
+ ,verify_company_id = false
|
|
|
+ )
|
|
|
+
|
|
|
+ , args_company_job("company_abnormal_info", Seq("company_id", "put_reason", "put_date")
|
|
|
+ , rowkey_udf = "concat_ws('_',company_id,md5(cleanup(concat_ws('',put_reason,split_date(cast(put_date as String)) ))))"
|
|
|
+ , is_super_filter = false
|
|
|
+ )
|
|
|
+ , args_company_job("company_illegal_info", Seq("company_id", "put_reason", "put_date")
|
|
|
+ , rowkey_udf = "concat_ws('_',company_id,md5(cleanup(concat_ws('',put_reason,split_date(cast(put_date as String)) ))))"
|
|
|
+ , is_super_filter = false
|
|
|
+ )
|
|
|
+
|
|
|
+ , args_company_job("zxr_evaluate_results", Seq("case_no", "asset_name", "name", "publish_time")
|
|
|
+ , rowkey_udf = "md5(cleanup(concat_ws('',case_no,asset_name,get_fixed_val(keyno,name),publish_time )))"
|
|
|
+ , is_super_filter = false
|
|
|
+ )
|
|
|
+ , args_company_job("zxr_evaluate", Seq("case_no", "asset_name", "name")
|
|
|
+ , rowkey_udf = "md5(cleanup(concat_ws('',case_no,asset_name,get_fixed_val(keyno,name) )))"
|
|
|
+ , is_super_filter = false
|
|
|
+ )
|
|
|
+
|
|
|
+ , args_company_job("restrictions_on_exit", Seq("case_no", "limited_person", "executed_person_name", "publish_time")
|
|
|
+ ,rowkey_udf = "md5(cleanup(concat_ws('',case_no,limited_person,get_fixed_val(executed_person_keyno,executed_person_name),publish_time )))"
|
|
|
+ , is_super_filter = false
|
|
|
+ )
|
|
|
+
|
|
|
+
|
|
|
)
|
|
|
|
|
|
def get_args_company_job(tn: String): args_company_job = {
|