package com.ld.igds.models;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import org.hibernate.annotations.GenericGenerator;
|
|
import javax.persistence.*;
|
import java.io.Serializable;
|
|
/**
|
* 区级储备粮粳稻谷入库记录
|
*
|
* @author chen
|
*/
|
@Data
|
@Entity
|
@Table(name = "TO_LS_RKJL_D")
|
public class ToLsRkjlD implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@GenericGenerator(name = "generator", strategy = "increment")
|
@GeneratedValue(generator = "generator")
|
@Column(name = "id", length = 64)
|
@PropertyDef(label = "主键id")
|
private int id;
|
|
@Column(name = "nf", length = 4)
|
@PropertyDef(label = "年份")
|
private String nf;
|
|
@Column(name = "rq", length = 255)
|
@PropertyDef(label = "日期")
|
private String rq;
|
|
@Column(name = "fcqk_cch", length = 255)
|
@PropertyDef(label = "车船号")
|
private String fcqkCch;
|
|
@Column(name = "fcqk_lldw", length = 255)
|
@PropertyDef(label = "来粮单位")
|
private String fcqkLldw;
|
|
@Column(name = "fcqk_lssl")
|
@PropertyDef(label = "粮食数量")
|
private double fcqkLssl = 0.0;
|
|
@Column(name = "jsqk_rksl")
|
@PropertyDef(label = "入库数量")
|
private double jsqkRksl = 0.0;
|
|
@Column(name = "jsqk_kszs")
|
@PropertyDef(label = "扣杂数量")
|
private double jsqkKszs = 0.0;
|
|
@Column(name = "jsqk_zl_sf")
|
@PropertyDef(label = "水分")
|
private double jsqkZlSf = 0.0;
|
|
@Column(name = "jsqk_zl_zz")
|
@PropertyDef(label = "杂质")
|
private double jsqkZlZz = 0.0;
|
|
@Column(name = "jsqk_zl_cc")
|
@PropertyDef(label = "出糙")
|
private double jsqkZlCc = 0.0;
|
|
@Column(name = "jsqk_zl_gwcm")
|
@PropertyDef(label = "谷外糙米")
|
private double jsqkZlGwcm = 0.0;
|
|
@Column(name = "jsqk_zl_hh")
|
@PropertyDef(label = "含黄")
|
private double jsqkZlHh = 0.0;
|
|
@Column(name = "data_date", length = 255)
|
@PropertyDef(label = "数据日期")
|
private String dataDate;
|
|
@Column(name = "update_time", length = 255)
|
@PropertyDef(label = "更新时间")
|
private String updateTime;
|
|
}
|