67 lines
1.5 KiB
Plaintext
67 lines
1.5 KiB
Plaintext
package com.cmeim.biz.po;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
import lombok.Data;
|
|
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.GeneratedValue;
|
|
import javax.persistence.GenerationType;
|
|
import javax.persistence.Id;
|
|
import javax.persistence.Table;
|
|
import javax.persistence.TableGenerator;
|
|
import java.io.Serializable;
|
|
|
|
@Data
|
|
@Entity
|
|
@Table(name = "podetailsremainqtydto")
|
|
public class Podetailsremainqtydto implements Serializable {
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY, generator = "podetailsremainqtydto")
|
|
//@TableGenerator(name = "podetailsremainqtydto", table = "sy_sequence", pkColumnName = "seq_name",
|
|
// valueColumnName = "seq_value", pkColumnValue = "podetailsremainqtydto", allocationSize = 1)
|
|
@Column(name = "id")
|
|
@ApiParam(value = "null")
|
|
private Long id;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "poid")
|
|
@ApiParam(value = "null")
|
|
private Long poid;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "cInvCode")
|
|
@ApiParam(value = "null")
|
|
private String cInvCode;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "iQuantity")
|
|
@ApiParam(value = "null")
|
|
private java.math.BigDecimal iQuantity;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "iArrQty")
|
|
@ApiParam(value = "null")
|
|
private java.math.BigDecimal iArrQty;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "qty")
|
|
@ApiParam(value = "null")
|
|
private java.math.BigDecimal qty;
|
|
|
|
}
|