private sealed class P_DEV001_xxx_S : ProcedureInfo
{
public P_DEV001_xxx_S() : base("P_DEV001_xxx_S") { }
protected override void AddParamInfo()
{
_paramList.Add(new ParamInfo("@p_work_type", "varchar", 10, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_tax_site_code_xxx", "varchar", 4, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_tax_site_name_xxx", "nvarchar", 200, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_biz_regno_xxx", "varchar", 20, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_biz_type_xxx", "varchar", 20, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_biz_items_xxx", "nvarchar", 400, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_chief_name_xxx", "nvarchar", 200, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_chief_socialno_xxx", "varchar", 20, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_zip_code_xxx", "varchar", 20, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_address_xxx", "varchar", 10, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_tel_xxx", "nvarchar", 400, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_fax_xxx", "varchar", 30, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_memo_xxx", "nvarchar", 1200, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_use_yn_xxx", "varchar", 1, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_attdatnum", "varchar", 30, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_id", "varchar", 100, "Input", typeof(System.String)));
_paramList.Add(new ParamInfo("@p_pc", "nvarchar", 200, "Input", typeof(System.String)));
}
public void AddParamData(System.String p_work_type, System.String p_tax_site_code_xxx, System.String p_tax_site_name_xxx, System.String p_biz_regno_xxx,
System.String p_biz_type_xxx, System.String p_biz_items_xxx, System.String p_chief_name_xxx, System.String p_chief_socialno_xxx,
System.String p_zip_code_xxx, System.String p_address_xxx, System.String p_tel_xxx, System.String p_fax_xxx,
System.String p_memo_xxx, System.String p_use_yn_xxx, System.String p_attdatnum, System.String p_id,
System.String p_pc)
{
AddParamData(new object[] {
p_work_type,
p_tax_site_code_xxx,
p_tax_site_name_xxx,
p_biz_regno_xxx,
p_biz_type_xxx,
p_biz_items_xxx,
p_chief_name_xxx,
p_chief_socialno_xxx,
p_zip_code_xxx,
p_address_xxx,
p_tel_xxx,
p_fax_xxx,
p_memo_xxx,
p_use_yn_xxx,
p_attdatnum,
p_id,
p_pc
});
}
}