📄 dbclothestypesql.java
字号:
package dao.common.sql;
public interface DbClothesTypeSql {
public String INSERT_CLOTHESTYPE = "insert into clothes_type values" +
"(?,?,?,?,?,?,to_date(?,'yyyy-mm-dd'))";
public String FIND_ALL_CLOTHESTYPE = "select clothes_id,clothes_name,service_type," +
"unit_original_price,lowest_discount,operator_name,add_date from clothes_type";
public String MODIFY_CLOTHESTYPE = "update clothes_type set clothes_name = ?,service_type = ?," +
"unit_original_price = ?,lowest_discount = ? where clothes_id = ?";
public String DELETE_CLOTHESTYPE = "delete from clothes_type where clothes_id = ?";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -