You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
3.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package jnpf.entity;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import java.util.Date;
import java.math.BigDecimal;
import java.math.BigDecimal;
import java.math.BigDecimal;
import java.math.BigDecimal;
import java.math.BigDecimal;
import java.math.BigDecimal;
import java.math.BigDecimal;
import java.math.BigDecimal;
/**
* 收付款单票据汇总手填
*
* @版本: V3.5
* @版权: 引迈信息技术有限公司https://www.jnpfsoft.com
* @作者: JNPF开发平台组
* @日期: 2024-04-15
*/
@Data
@TableName("jg_cw_payment_last_summary")
public class CwpaymentlastsummaryEntity {
@TableId(value ="ID" )
private String id;
@TableField("PAYMENT_ID")
private String paymentId;
@TableField(value = "PRODUCT_ID" , updateStrategy = FieldStrategy.IGNORED)
private String productId;
@TableField(value = "SPEC" , updateStrategy = FieldStrategy.IGNORED)
private String spec;
@TableField(value = "SETTLEMENT_UNIT" , updateStrategy = FieldStrategy.IGNORED)
private String settlementUnit;
@TableField(value = "SETTLEMENT_SUM" , updateStrategy = FieldStrategy.IGNORED)
private BigDecimal settlementSum;
@TableField(value = "SETTLEMENT_PRICE" , updateStrategy = FieldStrategy.IGNORED)
private BigDecimal settlementPrice;
@TableField(value = "SETTLEMENT_SUBTOTAL" , updateStrategy = FieldStrategy.IGNORED)
private BigDecimal settlementSubtotal;
@TableField(value = "RATE" , updateStrategy = FieldStrategy.IGNORED)
private String rate;
@TableField(value = "SETTLEMENT_PRICE_NO" , updateStrategy = FieldStrategy.IGNORED)
private BigDecimal settlementPriceNo;
@TableField(value = "SETTLEMENT_SUBTOTAL_NO" , updateStrategy = FieldStrategy.IGNORED)
private BigDecimal settlementSubtotalNo;
@TableField(value = "OTHER_TYPE" , updateStrategy = FieldStrategy.IGNORED)
private String otherType;
@TableField(value = "OTHER_EXPENSES" , updateStrategy = FieldStrategy.IGNORED)
private BigDecimal otherExpenses;
@TableField(value = "SETTLEMENT_TOTAL" , updateStrategy = FieldStrategy.IGNORED)
private BigDecimal settlementTotal;
@TableField(value = "SETTLEMENT_TOTAL_NO" , updateStrategy = FieldStrategy.IGNORED)
private BigDecimal settlementTotalNo;
@TableField(value = "REMARK" , updateStrategy = FieldStrategy.IGNORED)
private String remark;
@TableField("F_CREATOR_USER_ID")
private String creatorUserId;
@TableField("F_LAST_MODIFY_TIME")
private Date lastModifyTime;
@TableField("F_LAST_MODIFY_USER_ID")
private String lastModifyUserId;
@TableField("F_DELETE_TIME")
private Date deleteTime;
@TableField("F_DELETE_USER_ID")
private String deleteUserId;
@TableField("F_DELETE_MARK")
private Integer deleteMark;
@TableField("F_TENANT_ID")
private String tenantId;
@TableField("F_FLOW_ID")
private String flowId;
@TableField("F_VERSION")
private Integer version;
@TableField("COMPANY_ID")
private String companyId;
@TableField("DEPARTMENT_ID")
private String departmentId;
@TableField("ORGANIZE_JSON_ID")
private String organizeJsonId;
}