package cn.timer.api.utils.router.business;

import cn.hutool.json.JSONObject;
import cn.timer.api.dto.spmk.FromData;
import lombok.Builder;

/**
 * 补卡-业务
 * @author Tang
 *
 */
@Builder
public class ReissueACardBusiness extends SpmkAssoBusiness {

	@Override
	public void handleApprove(JSONObject jsonObj) {
		// TODO Auto-generated method stub
		// 发起人企业id
		String orgCode = jsonObj.get("orgCode",FromData.class).getValue();
		// 发起人id
		String id = jsonObj.get("id",FromData.class).getValue();
		// 发起人名称
		String initiator = jsonObj.get("initiator",FromData.class).getValue();
		
		// 补卡时间
		String PatchCardTime = jsonObj.get("__PatchCardTime",FromData.class).getValue();
		// 缺卡原因
		String cardShortage = jsonObj.get("cardShortage",FromData.class).getValue();
		// 上传文件
		String UploadAttachment = jsonObj.get("UploadAttachment",FromData.class).getValue();
		
		// 调 考勤管理 业务
	}

}