Commit 813ec89080699d96d0781c6d2ada69603e04072d

Authored by hujiaqi
1 parent ed7deea187

风险因素类

Showing 1 changed file with 28 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/RiskFactoryResultModel.java View file @ 813ec89
  1 +package com.lyms.platform.operate.web.result;
  2 +
  3 +/**
  4 + * @auther HuJiaqi
  5 + * @createTime 2016年12月12日 17时43分
  6 + * @discription
  7 + */
  8 +public class RiskFactoryResultModel {
  9 + private String name;
  10 +
  11 + private String color;
  12 +
  13 + public String getName() {
  14 + return name;
  15 + }
  16 +
  17 + public void setName(String name) {
  18 + this.name = name;
  19 + }
  20 +
  21 + public String getColor() {
  22 + return color;
  23 + }
  24 +
  25 + public void setColor(String color) {
  26 + this.color = color;
  27 + }
  28 +}