package com.ld.igds.models;
|
|
import java.io.Serializable;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
|
import lombok.Data;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
|
/**
|
* OA-报销单详细
|
*
|
* @author: andy.jia
|
* @description:
|
* @version:
|
* @data:2020年5月30日
|
*
|
*/
|
@Data
|
@Entity
|
@Table(name = "D_OA_EXP_CLAIM_DETAIL")
|
public class OAExpClaimDetail implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@Column(name = "ID_", length = 40)
|
@PropertyDef(label = "单据号")
|
private String id;
|
|
@Column(name = "EXP_CLAIM_ID", length = 40)
|
@PropertyDef(label = "单据ID")
|
private String expClaimId;
|
|
@Column(name = "NAME_", length = 100)
|
@PropertyDef(label = "报销项")
|
private String name;
|
|
@Column(name = "CATEGORY_", length = 20)
|
@PropertyDef(label = "报销分类")
|
private String category;
|
|
@Column(name = "AMOUNT_")
|
@PropertyDef(label = "报销金额")
|
private double amount;
|
|
@Column(name = "REMARK_", length = 255)
|
@PropertyDef(label = "备注")
|
private String remark;
|
|
}
|