拆分模块

This commit is contained in:
2025-09-03 20:56:44 +08:00
parent 08cc2c29a5
commit a2f5e4864b
939 changed files with 14227 additions and 9607 deletions

View File

@@ -0,0 +1,23 @@
package com.ecep.contract.model;
import java.io.Serializable;
import jakarta.persistence.Embeddable;
import lombok.Data;
@Embeddable
@Data
public class Price implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 税率1% =1100% =100
*/
private float taxRate;
/**
* 税前价格
*/
private double preTaxPrice;
/**
* 税后价格
*/
private double postTaxPrice;
}