/**
* api บรรจุ แต่งตั้ง ย้าย โอน
*/
import env from "../index";
const placement = `${env.API_URI}/Placement/placement`
export default {
getDatapersonal: (id: string) => `${placement}/personal/${id}`,
putProperty: (id: string) => `${placement}/property/${id}`
};