Blame view

src/main/java/com/pipi/sql/FootStoneSql.java 545 Bytes
donghu committed
1
package com.pipi.sql;   
dennis.dong committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

/** 
* Created by hu.dong on 2017年10月17日 下午1:59:17 

* @author hu.dong

* 类说明:
*/
public class FootStoneSql {

//清理ps_person_contact表联系人信息
public static String ps_person_contact_delete = "DELETE FROM  ps_person_contact WHERE  contact_name = ?;";

public static String ps_person_contact_phone_delete = "DELETE FROM ps_person_contact_phone WHERE phone = ?;";

public static String ps_person_contact_phone_query = "SELECT phone_id FROM ps_person_contact_phone where contact_id = ?;";

}