查询显示科目单价;
This commit is contained in:
+88
@@ -0,0 +1,88 @@
|
||||
package com.mhd.common.core.domain.po;
|
||||
|
||||
import com.mhd.common.core.annotation.Excel;
|
||||
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
|
||||
/**
|
||||
* 计费参数对象 billing_params
|
||||
*
|
||||
* @author gen
|
||||
* @date 2024-07-12
|
||||
*/
|
||||
|
||||
@Data
|
||||
@ApiModel(value = "计费参数对象", description = "计费参数响应对象")
|
||||
public class BillingParamsPO extends BaseVOEntity{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty("计费参数id")
|
||||
private Long billingParamsId;
|
||||
|
||||
@ApiModelProperty("一级组织表ID")
|
||||
@Excel(name = "一级组织表ID")
|
||||
private Long topOrganizationId;
|
||||
|
||||
@ApiModelProperty("组织表ID")
|
||||
@Excel(name = "组织表ID")
|
||||
private Long organizationId;
|
||||
|
||||
@ApiModelProperty("组织名称")
|
||||
@Excel(name = "组织名称")
|
||||
private String organizationName;
|
||||
|
||||
@ApiModelProperty("计费参数表名称")
|
||||
@Excel(name = "计费参数表名称")
|
||||
private String billingParamsName;
|
||||
|
||||
@ApiModelProperty("说明")
|
||||
@Excel(name = "说明")
|
||||
private String billingIllustrate;
|
||||
|
||||
/**
|
||||
* {
|
||||
* "fields":"参与字段",
|
||||
* "chargingId":"计费标识P1、P2",
|
||||
* "ladderType":"阶梯类型(1-固定参数,2-无阶梯,3-到达阶梯,4-累进阶梯)",
|
||||
* "ladderRule":"阶梯规则(1-左开右闭,2-左闭右开)",
|
||||
* "ladderNum":"阶梯值",
|
||||
* "sort":"排序"
|
||||
* }
|
||||
*/
|
||||
@ApiModelProperty("计费参数json串")
|
||||
@Excel(name = "计费参数json串")
|
||||
private String billingParamsJson;
|
||||
|
||||
/**
|
||||
*{
|
||||
* "outFields":"输出字段",
|
||||
* "outChargingId":"输出计费标识",
|
||||
* "fieIdsType":"字段类型(1-整数,2-浮点数,3-时间)",
|
||||
* "sort":"排序"
|
||||
* }
|
||||
*/
|
||||
@ApiModelProperty("计费参数输出json串")
|
||||
@Excel(name = "计费参数输出json串")
|
||||
private String billingOutputJson;
|
||||
|
||||
/**
|
||||
* {
|
||||
* "fieIds1":"字段1",
|
||||
* "fieIds2":"字段2",
|
||||
* "fieIdsn":"字段N",
|
||||
* "outFieIds1":"输出字段1",
|
||||
* "outFieIds2":"输出字段2",
|
||||
* "outFieIdsn":"输出字段n"
|
||||
* }
|
||||
*/
|
||||
@ApiModelProperty("预置规则json串")
|
||||
@Excel(name = "预置规则json串")
|
||||
private String preSetRules;
|
||||
|
||||
@ApiModelProperty("计费规则id")
|
||||
private Long billingRulesId;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user