保存进度!
This commit is contained in:
parent
748ab393ab
commit
a3d1a99897
@ -0,0 +1,24 @@
|
||||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2022-09-07 22:40:54
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2022-09-07 22:44:45
|
||||
* @FilePath: \product_form\src\main\java\com\cpic\xim\controller\ControllerServlet.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
|
||||
package com.cpic.xim.controller;
|
||||
|
||||
import jakarta.servlet.http.HttpServlet;
|
||||
import jakarta.servlet.http.HttpServletRequest;
|
||||
import jakarta.servlet.http.HttpServletResponse;
|
||||
|
||||
public class ControllerServlet extends HttpServlet
|
||||
{
|
||||
public void doGet( HttpServletRequest request, HttpServletResponse response )
|
||||
{
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,64 @@
|
||||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2022-09-07 22:46:21
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2022-09-07 22:55:40
|
||||
* @FilePath: \product_form\src\main\java\com\cpic\xim\model\Production.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
|
||||
package com.cpic.xim.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/*****************************************************
|
||||
* 用于封装产品信息的Bean。
|
||||
*****************************************************/
|
||||
public class Production implements Serializable
|
||||
{
|
||||
private static final long serialVersionUID = 748392348L;
|
||||
|
||||
private String name;
|
||||
private String description;
|
||||
private float price;
|
||||
|
||||
public Production()
|
||||
{}
|
||||
|
||||
public static long getSerialversionuid()
|
||||
{
|
||||
return serialVersionUID;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName( String name )
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getDescription()
|
||||
{
|
||||
return description;
|
||||
}
|
||||
|
||||
public void setDescription( String description )
|
||||
{
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public float getPrice()
|
||||
{
|
||||
return price;
|
||||
}
|
||||
|
||||
public void setPrice( float price )
|
||||
{
|
||||
this.price = price;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user