You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
software18/encity/Zhifufangshi.java

54 lines
802 B

3 months ago
package com.entity;
/**
* @ClassName Zhifufangshi
* @Description
*/
public class Zhifufangshi {
//id列
private Integer id;
//支付方式
private String mingcheng;
/**
* id
*
* @return id id
*/
public Integer getId() {
return this.id;
}
/**
* id
*
* @param id id
*/
public void setId(Integer id) {
this.id = id;
}
/**
*
*
* @return mingcheng
*/
public String getMingcheng() {
return this.mingcheng;
}
/**
*
*
* @param mingcheng
*/
public void setMingcheng(String mingcheng) {
this.mingcheng = mingcheng;
}
}