Files
scrq-hd/.svn/pristine/a2/a24846daf6ad0fce97e9182b158ab0c4e156f36a.svn-base
2025-07-03 10:34:04 +08:00

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;
}