 I want to write code here. How should I do ?
I want to write code here. How should I do ?
Added by keating wang about 15 years ago
I want to write code here. How should I do ?
@
public class ShipperOrderInspectionItem {
private String consigneeCn;
    private String consigneeEn;public String getConsigneeCn() {
        return consigneeCn;
    }public String getConsigneeEn() {
        return consigneeEn;
    }
}
@Oh, God ! I don't like the result...
Replies (2)
     RE: I want to write code here. How should I do ?
    -
    Added by Eric Davis about 15 years ago
    RE: I want to write code here. How should I do ?
    -
    Added by Eric Davis about 15 years ago
  
  Use <pre><code>
public class ShipperOrderInspectionItem {
    private String consigneeCn;
    private String consigneeEn;
    public String getConsigneeCn() {
        return consigneeCn;
    }
    public String getConsigneeEn() {
        return consigneeEn;
    }
}
Eric Davis
     RE: I want to write code here. How should I do ?
    -
    Added by keating wang about 15 years ago
    RE: I want to write code here. How should I do ?
    -
    Added by keating wang about 15 years ago
  
  okay,thank you !