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.
30 lines
595 B
30 lines
595 B
package ${basePackage}.${moduleName}.req;
|
|
|
|
import ${basePackage}.frame.base.BaseUpdateRequest;
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
/**
|
|
* ${table.getCName()}DeleteRequest - ${table.tableComment}
|
|
*
|
|
* @author ${author?default("")}
|
|
* @version 0.0.1
|
|
* @since ${date?string("yyyy-MM-dd")}
|
|
*/
|
|
public class ${table.getCName()}DeleteRequest extends BaseUpdateRequest {
|
|
|
|
/**
|
|
* 主键
|
|
*/
|
|
@NotNull(message = "主键不能为空")
|
|
private long id;
|
|
|
|
public long getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public void setId(long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
}
|