package com.gkhy.exam.pay.dto.rep;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
|
/**
|
* 非煤缴费种类关联对象 non_coal_pay_category
|
*
|
* @author hh
|
* @date 2025-01-16
|
*/
|
@Data
|
@ApiModel(value = "非煤缴费种类关联对象返回", description = "非煤缴费种类关联对象返回")
|
public class NonCoalPayCategoryRepDto implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* $column.columnComment
|
*/
|
private Long id;
|
|
/**
|
* $column.columnComment
|
*/
|
@ApiModelProperty("非煤管理id")
|
private Long nonCoalPayId;
|
|
/**
|
* 类别id
|
*/
|
|
@ApiModelProperty("类别id")
|
private Long categoryId;
|
|
@ApiModelProperty("类别名称")
|
private String categoryName;
|
|
/**
|
* 类别1理论2实操
|
*/
|
@ApiModelProperty("类别类型id")
|
private Long categoryType;
|
|
|
}
|