📄 testupdateentity.java
字号:
/**
* (c) Copyright 2007 computer01
*
* FILENAME : TestUpdateEntity.java
* PACKAGE : com.computer03.test
* CREATE DATE : 2007-12-21
* AUTHOR : admin
* DESCRIPTION : 修改方法的测试类
*/
package com.computer03.test;
import com.computer03.entity.AllEntity;
import com.computer03.entity.TAB_CLASS;
import com.computer03.entity.TAB_STUDENTS;
import com.computer03.entitysupport.StudentsAssiImpl;
public class TestUpdateEntity {
public static void main(String[] args) {
TAB_STUDENTS stu = new TAB_STUDENTS();
stu.setSTUNO("52345");
stu.setSTUNAME("姜文");
TAB_CLASS cla = new TAB_CLASS();
cla.setCLASSNO(new Integer(4));
stu.setPK_TABCLASS(cla);
AllEntity allentity =
new AllEntity();
allentity.setStudent(stu);
StudentsAssiImpl impl =
new StudentsAssiImpl();
impl.updateEntity(allentity);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -