testsongtypeservice.java

来自「本代码是点歌系统的部分代码实现了部分功能」· Java 代码 · 共 25 行

JAVA
25
字号
package music.service;

import music.hibernate.SongType;

public class TestSongTypeService {
	public void insertSongType(SongType songtype)
	{
		SongTypeService ser = new SongTypeService();
		ser.insertSongType(songtype);
	}

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		TestSongTypeService test = new TestSongTypeService();
		SongType songtype = new SongType();
		songtype.setSongTypeName("liwei");
		test.insertSongType(songtype);
	}


}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?