/**
|
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com).
|
* <p>
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
* you may not use this file except in compliance with the License.
|
* You may obtain a copy of the License at
|
* <p>
|
* http://www.apache.org/licenses/LICENSE-2.0
|
* <p>
|
* Unless required by applicable law or agreed to in writing, software
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* See the License for the specific language governing permissions and
|
* limitations under the License.
|
*/
|
package org.springblade.modules.river.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 实体类
|
*
|
* @author Blade
|
* @since 2019-11-07
|
*/
|
@Data
|
@TableName("st_river_r")
|
@ApiModel(value = "RiverR对象", description = "RiverR对象")
|
public class RiverR {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableField("STCD")
|
private String stcd;
|
@TableField("TM")
|
private String tm;
|
@TableField("Z")
|
private BigDecimal z;
|
@TableField("Q")
|
private BigDecimal q;
|
@TableField("XSA")
|
private BigDecimal xsa;
|
@TableField("XSAVV")
|
private BigDecimal xsavv;
|
@TableField("XSMXV")
|
private BigDecimal xsmxv;
|
@TableField("FLWCHRCD")
|
private String flwchrcd;
|
@TableField("WPTN")
|
private String wptn;
|
@TableField("MSQMT")
|
private String msqmt;
|
@TableField("MSAMT")
|
private String msamt;
|
@TableField("MSVMT")
|
private String msvmt;
|
@TableField("MDTM")
|
private String mdtm;
|
|
|
}
|